We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df14632 commit 8936bbfCopy full SHA for 8936bbf
testproject/index.php
@@ -10,8 +10,13 @@
10
$nullValue = null;
11
$variableThatsNotSet;
12
$aLargeArray = array_fill(0, 100, 'test');
13
-
14
- class TestClass {
+
+ class TestParentClass {
15
+ public static $aStaticProperty = 1234;
16
+ }
17
18
+ class TestClass extends TestParentClass {
19
+ public static $aStaticProperty = 5678;
20
public $aProperty;
21
private $aPrivateProperty;
22
public function __construct() {
0 commit comments