Lines Matching refs:static
1 Some special methods cannot be static
3 <?php class A { static function __construct() {} }
5 Constructor __construct() cannot be static from 1:17 to 1:22
36 <?php class A { static function __destruct() {} }
38 Destructor __destruct() cannot be static from 1:17 to 1:22
69 <?php class A { static function __clone() {} }
71 Clone method __clone() cannot be static from 1:17 to 1:22
102 <?php class A { static function __CONSTRUCT() {} }
104 Constructor __CONSTRUCT() cannot be static from 1:17 to 1:22
135 <?php class A { static function __Destruct() {} }
137 Destructor __Destruct() cannot be static from 1:17 to 1:22
168 <?php class A { static function __cLoNe() {} }
170 Clone method __cLoNe() cannot be static from 1:17 to 1:22