Home
last modified time | relevance | path

Searched refs:protected (Results 26 – 50 of 385) sorted by relevance

12345678910>>...16

/PHP-8.0/ext/standard/tests/array/
H A Dsort_object2.phpt16 protected $protected_class_value;
31 protected $protected_class_value;
100 ["protected_class_value":protected]=>
109 ["protected_class_value":protected]=>
118 ["protected_class_value":protected]=>
127 ["protected_class_value":protected]=>
139 ["protected_class_value":protected]=>
148 ["protected_class_value":protected]=>
157 ["protected_class_value":protected]=>
166 ["protected_class_value":protected]=>
[all …]
H A Darray_fill_object.phpt81 protected $member1;
95 protected $member1;
111 protected $member3;
138 protected $member3;
309 ["member1":protected]=>
318 ["member1":protected]=>
330 ["member1":protected]=>
339 ["member1":protected]=>
355 ["member3":protected]=>
364 ["member3":protected]=>
[all …]
/PHP-8.0/ext/pdo/tests/
H A Dpdo_005.phpt27 protected $val;
33 protected $row;
87 ["val":protected]=>
96 ["val":protected]=>
105 ["val":protected]=>
117 ["row":protected]=>
121 ["val":protected]=>
130 ["row":protected]=>
134 ["val":protected]=>
143 ["row":protected]=>
[all …]
/PHP-8.0/ext/standard/tests/general_functions/
H A Dvar_dump.phpt144 protected $protected_var2;
156 protected function foo2() {
175 protected $class_object4;
568 ["protected_var1":protected]=>
570 ["protected_var2":protected]=>
633 ["class_object4":protected]=>
711 ["class_object4":protected]=>
744 ["protected_var1":protected]=>
746 ["protected_var2":protected]=>
761 ["protected_var1":protected]=>
[all …]
H A Dvar_dump_64bit.phpt144 protected $protected_var2;
156 protected function foo2() {
175 protected $class_object4;
568 ["protected_var1":protected]=>
570 ["protected_var2":protected]=>
633 ["class_object4":protected]=>
711 ["class_object4":protected]=>
744 ["protected_var1":protected]=>
746 ["protected_var2":protected]=>
761 ["protected_var1":protected]=>
[all …]
H A Ddebug_zval_dump_o.phpt21 protected $value3 = 20;
27 protected function foo2() {
49 protected $p1 = 40;
54 protected $class_object4;
119 ["value3":protected]=>
140 ["p1":protected]=>
236 ["value3":protected]=>
256 ["value3":protected]=>
281 ["value3":protected]=>
301 ["value3":protected]=>
[all …]
/PHP-8.0/tests/classes/
H A Dproperty_override_protected_protected.phpt2 Redeclare inherited protected property as protected.
7 protected $p = "A::p";
16 protected $p = "B::p";
H A Dproperty_override_protectedStatic_protectedStatic.phpt2 Redeclare inherited protected static property as protected static.
7 protected static $p = "A::p (static)";
16 protected static $p = "B::p (static)";
H A Dproperty_override_protectedStatic_protected.phpt2 Redeclare inherited protected static property as protected.
7 protected static $p = "A::p (static)";
16 protected $p = "B::p";
H A Dproperty_override_protected_protectedStatic.phpt2 Redeclare inherited protected property as protected static.
7 protected $p = "A::p";
16 protected static $p = "B::p (static)";
H A Dconstants_visibility_error_002.phpt2 Class protected constant visibility error
6 protected const protectedConst = 'protectedConst';
13 Fatal error: Uncaught Error: Cannot access protected constant A::protectedConst in %s:6
H A Dconstants_visibility_002.phpt2 Class protected constant visibility
6 protected const protectedConst = 'protectedConst';
27 Cannot access protected constant A::protectedConst
/PHP-8.0/Zend/tests/
H A Dbug29689.phpt2 Bug #29689 (default value of protected member overrides default value of private)
16 protected $foo = 'bar';
26 protected $foo = 'baz';
27 protected $foo2 = 'baz2';
39 protected $foo = 'baz2';
40 protected $foo2 = 'baz22';
H A Dgrandparent_prototype.phpt7 protected function test() {}
11 $x->test(); // Uncaught Error: Call to protected method D::test() from scope B
15 protected function test() {}
18 protected function test() {
H A Daccess_modifiers_008.phpt2 Inconsistencies when accessing protected members
9 static protected function f() {return 'A::f()';}
12 static protected function f() {return 'B1::f()';}
21 Fatal error: Call to protected method B1::f() from scope B2 in %s on line %d
H A Daccess_modifiers_009.phpt2 Inconsistencies when accessing protected members - 2
9 static protected function f() {return 'A::f()';}
12 static protected function f() {return 'B1::f()';}
26 Fatal error: Call to protected method B1::f() from scope B2 in %s on line %d
H A Dbug66286.phpt7 protected $someArray = array();
11 protected $someArray = array();
12 protected $someValue = null;
/PHP-8.0/ext/standard/tests/serialize/
H A Dbug49649.phpt11 * protected $protected = 2;
28 public $protected = null;
40 ["protected"]=>
H A Dserialization_objects_011.phpt76 ["AProt":protected]=>
87 ["AProt":protected]=>
102 ["BProt":protected]=>
108 ["AProt":protected]=>
119 ["BProt":protected]=>
125 ["AProt":protected]=>
140 ["AProt":protected]=>
146 ["CProt":protected]=>
152 ["BProt":protected]=>
165 ["AProt":protected]=>
[all …]
H A Dbug49649_2.phpt11 * protected $protected = 2;
28 private $protected = null;
40 ["protected":"Foo":private]=>
/PHP-8.0/ext/json/tests/
H A Djson_decode_exceptions.phpt15 ["message":protected]=>
19 ["code":protected]=>
21 ["file":protected]=>
23 ["line":protected]=>
/PHP-8.0/ext/spl/tests/
H A Darray_023.phpt9 protected $bar = 'b';
25 protected $bar = 'bbb';
43 ["bar":protected]=>
55 ["bar":protected]=>
67 ["bar":protected]=>
79 ["bar":protected]=>
/PHP-8.0/Zend/tests/type_declarations/
H A Dtyped_properties_protected_inheritance_mismatch.phpt2 Typed property invariance violation for protected properties
6 class A { protected int $x; }
7 class B extends A { protected $x; }
/PHP-8.0/ext/opcache/tests/opt/
H A Dprop_types.phpt16 protected int $protected;
20 var_dump($this->public, $this->protected, $this->private);
24 var_dump($test2->public, $test2->protected, $test2->private);
32 var_dump($this->public, $this->protected, $this->private);
37 var_dump($test->public, $test->protected, $test->private);
65 0004 #3.T2 [any] = FETCH_OBJ_R #1.CV0($test) [object (instanceof Test)] string("protected")
83 0003 #1.T1 [long] = FETCH_OBJ_R THIS string("protected")
103 0004 #3.T2 [long] = FETCH_OBJ_R #1.CV0($test2) [object (instanceof Test2)] string("protected")
121 0003 #1.T1 [long] = FETCH_OBJ_R THIS string("protected")
/PHP-8.0/Zend/tests/traits/
H A Dabstract_method_7.phpt2 Abstract private trait method forwarded as abstract protected method
13 abstract protected function method(int $a, string $b);
17 protected function method(int $a, string $b) {}

Completed in 31 milliseconds

12345678910>>...16