18 private $_testPrivate;
63 private static $_testPrivateStatic;
67 $this->testPublic =
'public';
68 $this->_testPrivate =
'private';
69 $this->_testPropertyBoolean =
true;
70 $this->_testPropertyInteger = 10;
71 $this->_testPropertyFloat = 1.97;
72 $this->_testPropertyString =
'string';
73 $this->_testPropertyArray = [
'test', 20];
74 self::$testPublicStatic =
'static public';
75 self::$_testProtectedStatic =
'static protected';
76 self::$_testPrivateStatic =
'static private';
86 $this->_testPropertyObject = $object;
static $_testProtectedStatic
setPropertyObject($object)