<?php
class Menu{
private $orderCount;
public function setOrderCount($orderCount) {
$this->orderCount=$orderCount;
}
}
$bread= new Menu();
$bread->setOrderCount(4);
echo $bread->getOrderCount();
Fatal error: Uncaught Error: Call to undefined method Menu::getOrderCount() in /in/SIjLt:13
Stack trace:
#0 {main}
thrown in /in/SIjLt on line 13
Process exited with code 255.
Fatal error: Call to undefined method Menu::getOrderCount() in /in/SIjLt on line 13
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/SIjLt on line 4
Process exited with code 255.
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/SIjLt on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/SIjLt on line 4
Process exited with code 255.