标签: php function syntax
如何解决解析错误:语法错误,意外的':',期望的';'或... php文件中的“ {”。
我的代码:
public function enqueue($item): bool { if (!$this->isValid()) return false; $this->queue[$this->head] = $item; $this->head++; return true; }