php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
object_handlers.stub.php
Go to the documentation of this file.
1<?php
2
7
8final class DoOperationNoCast {
9 private int $val;
10 public function __construct(int $val) {}
11}
12
14 private int $val;
15 public function __construct(int $val) {}
16}
18 private float $val;
19 public function __construct(float $val) {}
20}
22 private int|float $val;
23 public function __construct(int|float $val) {}
24}
25
27 public bool $read = false;
28 public bool $write = false;
29 public bool $has = false;
30 public bool $unset = false;
31 public int $readType;
32 public bool $hasOffset = false;
33 public int $checkEmpty;
34 public mixed $offset;
35}