123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- final class WeakReference
- {
- public function __construct() {}
- public static function create(object $object): WeakReference {}
- public function get(): ?object {}
- }
- final class WeakMap implements ArrayAccess, Countable, IteratorAggregate
- {
-
- public function offsetGet($object): mixed {}
-
- public function offsetSet($object, mixed $value): void {}
-
- public function offsetExists($object): bool {}
-
- public function offsetUnset($object): void {}
- public function count(): int {}
- public function getIterator(): Iterator {}
- }
|