7 lines
102 B
PHP
7 lines
102 B
PHP
|
<?php
|
||
|
|
||
|
class A {
|
||
|
private static $deprecationsTriggered = array(
|
||
|
__CLASS__ => true
|
||
|
);
|
||
|
}
|