Home
last modified time | relevance | path

Searched refs:__construct (Results 1 – 25 of 923) sorted by relevance

12345678910>>...37

/PHP-7.4/ext/standard/tests/general_functions/
H A Dbug40398.phpt8 function __construct($msg)
16 public function __construct()
25 public function __construct()
34 public function __construct()
43 public function __construct()
78 Base::__construct(1)
79 Base::__construct(2)
80 Base::__construct(3)
81 Base::__construct(4)
82 Base::__construct(5)
[all …]
/PHP-7.4/tests/classes/
H A Dctor_visibility.phpt8 function __construct()
16 function __construct()
19 parent::__construct();
32 private function __construct()
47 function __construct()
50 parent::__construct();
64 Derived::__construct()
65 Test::__construct()
66 TestPriv::__construct()
67 DerivedPriv::__construct()
[all …]
H A Dctor_in_interface_02.phpt7 function __construct();
16 function __construct()
23 function __construct($a);
28 function __construct()
34 Fatal error: Declaration of implem13::__construct() must be compatible with constr3::__construct($a…
H A Dctor_dtor.phpt7 function __construct() {
16 function __construct() {
25 $t->__construct();
33 early::__construct
34 early::__construct
36 late::__construct
H A Dctor_in_interface_04.phpt7 function __construct();
12 function __construct()
19 function __construct($a)
26 Fatal error: Declaration of derived::__construct($a) must be compatible with constr::__construct() …
H A Darray_access_010.phpt45 function __construct()
105 ArrayReferenceProxy::__construct(Array)
124 ArrayReferenceProxy::__construct(Array)
127 ArrayReferenceProxy::__construct(Array)
129 ArrayReferenceProxy::__construct(Array)
132 ArrayReferenceProxy::__construct(Array)
134 ArrayReferenceProxy::__construct(Array)
137 ArrayReferenceProxy::__construct(Array)
140 ArrayReferenceProxy::__construct(Array)
143 ArrayReferenceProxy::__construct(Array)
[all …]
H A Dinterfaces_003.phpt2 ZE2 interface and __construct
10 public function __construct(MyObject $o);
15 public function __construct(MyObject $o)
25 Fatal error: Uncaught ArgumentCountError: Too few arguments to function MyTestClass::__construct(),…
27 #0 %s(%d): MyTestClass->__construct()
H A Darray_access_011.phpt47 function __construct()
114 ArrayAccessReferenceProxy::__construct(0)
138 ArrayAccessReferenceProxy::__construct(0)
141 ArrayAccessReferenceProxy::__construct(0)
143 ArrayAccessReferenceProxy::__construct(0)
146 ArrayAccessReferenceProxy::__construct(0)
148 ArrayAccessReferenceProxy::__construct(0)
151 ArrayAccessReferenceProxy::__construct(0)
154 ArrayAccessReferenceProxy::__construct(0)
157 ArrayAccessReferenceProxy::__construct(0)
[all …]
H A Darray_access_009.phpt57 function __construct()
131 ArrayProxy::__construct(0)
147 ArrayProxy::__construct(0)
150 ArrayProxy::__construct(0)
152 ArrayProxy::__construct(0)
155 ArrayProxy::__construct(0)
157 ArrayProxy::__construct(0)
160 ArrayProxy::__construct(0)
163 ArrayProxy::__construct(0)
166 ArrayProxy::__construct(0)
[all …]
H A Dctor_in_interface_01.phpt7 function __construct();
12 function __construct($a)
19 Fatal error: Declaration of implem::__construct($a) must be compatible with constr::__construct() i…
/PHP-7.4/Zend/tests/
H A Dns_085.phpt8 function __construct() {echo __METHOD__,"\n";}
15 function __construct() {echo __METHOD__,"\n";}
23 foo::__construct
24 foo\bar::__construct
25 foo\bar::__construct
26 foo::__construct
H A Dbug48215.phpt2 Bug #48215 - parent::method() calls __construct
7 public function __construct() {
17 public function __construct() {
19 parent::__construct();
32 B::__construct
33 A::__construct
H A Dns_089.phpt10 class A { function __construct() {echo __METHOD__,"\n";} }
11 class B { function __construct() {echo __METHOD__,"\n";} }
12 class C { function __construct() {echo __METHOD__,"\n";} }
13 class D { function __construct() {echo __METHOD__,"\n";} }
29 class C { function __construct() {echo __METHOD__,"\n";}}
46 Foo\Bar\Baz\A::__construct
47 Foo\Bar\Baz\B::__construct
48 Foo\Bar\Baz\C::__construct
49 Foo\Bar\Baz\D::__construct
50 Fiz\Biz\Buz\C::__construct
H A Dns_090.phpt10 class A { function __construct() {echo __METHOD__,"\n";} }
11 class B { function __construct() {echo __METHOD__,"\n";} }
12 class C { function __construct() {echo __METHOD__,"\n";} }
13 class D { function __construct() {echo __METHOD__,"\n";} }
20 class C { function __construct() {echo __METHOD__,"\n";}}
37 Foo\Bar\Baz\A::__construct
38 Foo\Bar\Baz\B::__construct
39 Foo\Bar\Baz\C::__construct
40 Foo\Bar\Baz\D::__construct
41 Fiz\Biz\Buz\C::__construct
H A Dns_086.phpt17 function __construct() {echo __METHOD__,"\n";}
24 function __construct() {echo __METHOD__,"\n";}
32 foo::__construct
33 foo\bar::__construct
34 foo\bar::__construct
35 foo::__construct
H A Dbug51421.phpt2 Bug #51421 (Abstract __construct constructor argument list not enforced)
9 abstract public function __construct(ExampleClass $var);
13 public function __construct() {}
18 Fatal error: Declaration of Test::__construct() must be compatible with TestInterface::__construct(…
H A Dbug61970_2.phpt2 Bug #61970 (Restraining __construct() access level in subclass gives a fatal error - stays when inh…
7 abstract public function __construct();
11 public function __construct(){}
15 protected function __construct(){}
18 Fatal error: Access level to Baz::__construct() must be public (as in class Foo) in %s on line 12
H A Dbug27798.phpt12 function __construct()
23 function __construct()
25 parent::__construct();
37 Base::__construct
50 Base::__construct
59 Child::__construct
H A Dconstructor_abstract_grantparent.phpt7 abstract function __construct(X $x);
10 function __construct(X $x) {}
13 function __construct() {}
18 Fatal error: Declaration of C::__construct() must be compatible with A::__construct(X $x) in %s on …
H A Dconstructor_args.phpt2 Different numbers of arguments in __construct()
6 function __construct();
9 public function __construct($x = 1) {
13 public function __construct($x = 1, $y = 2) {
H A Dbug30828.phpt6 function __construct() {
32 function __construct() {
33 parent::__construct();
50 #0 A->__construct() called at [%sbug30828.php:30]
51 #1 B->__construct() called at [%sbug30828.php:42]
52 A->__construct
53 B->__construct
/PHP-7.4/ext/spl/tests/
H A Dbug54384.phpt17 function __construct(){}
26 function __construct(){}
36 function __construct(){}
46 function __construct(){}
55 function __construct(){}
64 function __construct(){}
73 function __construct(){}
82 function __construct(){}
91 function __construct(){}
100 function __construct(){}
[all …]
H A Diterator_056.phpt2 SPL: Calling __construct(void) on class extending SPL iterator
59 FilterIterator::__construct() expects exactly 1 parameter, 0 given
60 CachingIterator::__construct() expects at least 1 parameter, 0 given
61 RecursiveCachingIterator::__construct() expects at least 1 parameter, 0 given
62 ParentIterator::__construct() expects exactly 1 parameter, 0 given
63 LimitIterator::__construct() expects at least 1 parameter, 0 given
64 NoRewindIterator::__construct() expects exactly 1 parameter, 0 given
/PHP-7.4/Zend/tests/type_declarations/variance/
H A Dabstract_constructor.phpt8 abstract function __construct(X $x);
11 function __construct(object $x) {}
14 function __construct(Y $x) {}
18 Fatal error: Could not check compatibility between C::__construct(Y $x) and A::__construct(X $x), b…
/PHP-7.4/Zend/tests/grammar/
H A Dsemi_reserved_007.phpt9 public function __construct() {
17 public function __construct() {
18 parent::__construct();
29 From Foo::__construct:
32 From Bar::__construct:

Completed in 27 milliseconds

12345678910>>...37