Home
last modified time | relevance | path

Searched refs:public (Results 76 – 100 of 1944) sorted by relevance

12345678910>>...78

/PHP-7.4/Zend/tests/type_declarations/
H A Dtyped_properties_076.phpt10 public int $int;
11 public float $float;
12 public ?int $nint;
13 public ?string $nstring;
14 public array $array;
15 public object $object;
16 public iterable $iterable;
17 public Iterator $Iterator;
18 public A $A;
19 public B $B;
H A Dtyped_properties_059.phpt6 public int $a1;
7 public ?int $b1;
12 public int $a2;
13 public ?int $b2;
H A Dtyped_properties_033.phpt6 public int $foo = 1;
7 public int $bar = 3;
8 public int $baz = 5;
9 public int $qux = PHP_INT_MAX;
11 public function &fetch() {
/PHP-7.4/Zend/tests/
H A Dbug32290.phpt10 public function doSomething($i)
16 public function doSomethingThis($i)
22 public function doSomethingParent($i)
28 public function doSomethingParentThis($i)
34 public static function doSomethingStatic($i)
43 public function doSomething($i)
51 public function doSomethingThis($i)
59 public function doSomethingParent($i)
67 public function doSomethingParentThis($i)
75 public static function doSomethingStatic($i)
H A Dget_class_vars_typed_props.phpt7 public static int $int1;
8 public static int $int2 = 42;
9 public int $int3;
10 public int $int4 = 42;
H A Dbug78356.phpt6 public function offsetGet($offset)
10 public function offsetExists($offset)
14 public function offsetUnset($offset) {}
15 public function offsetSet($offset, $value) {}
H A Ddereference_005.phpt10 public function __construct() {
17 public function offsetSet($offset, $value) {
20 public function offsetExists($offset) {
23 public function offsetUnset($offset) {
26 public function offsetGet($offset) {
H A Dstrlen.phpt8 public $something = 'hello';
10 public function __toString()
22 public $something;
24 public function __construct(&$a)
29 public function __toString()
H A Ddereference_003.phpt9 public $x = 2;
10 public function a() {
15 public function b() {
18 public function c() {
24 public function d() {
H A Dbug63734.phpt8 public $ref;
9 public $ary;
10 public function __construct() {
14 public function __destruct() {
H A Dbug75420.16.phpt6 public function offsetExists($x) { }
7 public function offsetGet($x) { }
8 public function offsetSet($x, $y) { $GLOBALS["obj"] = 24; var_dump($this); }
9 public function offsetUnset($x) { }
H A Dbug75420.15.phpt6 public function offsetExists($x) { }
7 public function offsetGet($x) { }
8 public function offsetSet($x, $y) { $GLOBALS["name"] = 24; var_dump($x); }
9 public function offsetUnset($x) { }
/PHP-7.4/ext/reflection/tests/
H A Dbug29986.phpt23 Constant [ public bool BOOLEAN_CONSTANT ] { 1 }
24 Constant [ public null NULL_CONSTANT ] { }
25 Constant [ public string STRING_CONSTANT ] { This is a string }
26 Constant [ public int INTEGER_CONSTANT ] { 1000 }
27 Constant [ public float FLOAT_CONSTANT ] { 3.14159265 }
/PHP-7.4/ext/standard/tests/serialize/
H A Dbug49649_2.phpt13 * public $public = 3;
15 * public $notThere = 'old';
26 private $public = null;
37 ["public":"Foo":private]=>
H A D__serialize_005.phpt8 public function __construct(array $data) {
11 public function __serialize() {
14 public function __unserialize(array $data) {
21 public function __construct(array $data, array $data2) {
25 public function __serialize() {
28 public function __unserialize(array $payload) {
H A Dbug65806.phpt7 public $attrA;
8 public $attrB;
11 public $attrC;
12 public $attrD;
18 public function __construct($obj)
23 public function get()
27 public function __sleep()
34 public function __wakeup()
/PHP-7.4/tests/lang/
H A DforeachLoopIterator.002.phpt7 public function valid() { return true; }
8 public function next() { }
9 public function rewind() { }
10 public function current() { }
11 public function key() { }
/PHP-7.4/Zend/tests/closures/
H A Dclosure_from_callable_basic.phpt8 echo 'Access public static function';
12 echo 'Access public static function with different case';
16 echo 'Access public static function with colon scheme';
20 echo 'Access public instance method of object';
40 echo 'Class with public invokable';
101 Access public static function OK
102 Access public static function with different case OK
103 Access public static function with colon scheme OK
104 Access public instance method of object OK
109 Class with public invokable OK
[all …]
/PHP-7.4/ext/opcache/tests/opt/
H A Dprop_types.phpt15 public bool $public;
19 public function inTest() {
20 var_dump($this->public, $this->protected, $this->private);
23 public function inTestWithTest2(Test2 $test2) {
24 var_dump($test2->public, $test2->protected, $test2->private);
31 public function inTest2() {
32 var_dump($this->public, $this->protected, $this->private);
37 var_dump($test->public, $test->protected, $test->private);
59 #2.T1 [bool] = FETCH_OBJ_R #1.CV0($test) [object (instanceof Test)] string("public")
75 #0.T0 [bool] = FETCH_OBJ_R THIS string("public")
[all …]
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug36226.phpt50 public $audienceMemberId;
51 public $timestamp;
52 public $smokeStatus;
53 public $callInitiator;
65 public $timestamp;
74 public $version;
75 public $activityId;
76 public $messageId;
77 public $source;
78 public $logOnEvent;
[all …]
/PHP-7.4/Zend/tests/type_declarations/variance/
H A Dparent_in_class.phpt8 public function method(parent $x) {}
11 public function method(parent $x) {}
17 public function method(parent $x) {}
20 public function method(P2 $x) {}
26 public function method($x): parent {}
29 public function method($x): parent {}
35 public function method(parent $x) {}
38 public function method(parent $x) {}
/PHP-7.4/ext/session/tests/
H A Dsession_set_save_handler_sid_002.phpt17 public $path;
19 public function open($path, $name) {
27 public function close() {
31 public function read($id) {
35 public function write($id, $data) {
39 public function destroy($id) {
43 public function gc($maxlifetime) {
52 public function create_sid() {
/PHP-7.4/ext/spl/tests/
H A Dbug69264.phpt6 public function __debugInfo() {
12 public function __debugInfo() {
18 public function __debugInfo() {
24 public function __debugInfo() {
30 public function __debugInfo() {
36 public function __debugInfo() {
42 public function __debugInfo() {
48 public function __debugInfo() {
H A Dfixedarray_019.phpt6 public function rewind() {
10 public function valid() {
14 public function next() {
18 public function current() {
22 public function key() {
/PHP-7.4/tests/classes/
H A Ddestructor_and_references.phpt6 class test1 {public $x;};
7 class test2 {public $x;};
8 class test3 {public $x;};
9 class test4 {public $x;};

Completed in 50 milliseconds

12345678910>>...78