Search code examples
phpstatic-membersmagic-methods

reference of code to static doesnt find any implementation


I have in code this

/**
* @method static \string myMethod()
*/

I dont see myMethod() define anywhere but I see a usage

static::myMethod();

what am I missing here.


Solution

  • Maybe this?

    http://www.php.net/manual/en/language.oop5.overloading.php#object.callstatic

    Or parent classes?