You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Foo
{
/**
* This is the constructor
*/
public function __construct()
{
}
/**
* this is not a constructor
* @return boolean
*/
public function foo()
{
return false;
}
}
The constructor is __construct()foo() is just a regular 'ol function and as such should not raise said error