@static

@static --  marks a function as static

Synopsis

@static

Scope

Example

...
class Foo {
 /**
 ...
 * @static
 */
 function Bar (...
...

// this call is permitted according to the docs:
Foo::Bar() ;