123456789101112131415161718192021222324 |
- <?php
- /** @generate-class-entries */
- /**
- * @strict-properties
- * @not-serializable
- */
- final class Closure
- {
- private function __construct() {}
- public static function bind(
- Closure $closure,
- ?object $newThis,
- object|string|null $newScope = "static"
- ): ?Closure {}
- public function bindTo(?object $newThis, object|string|null $newScope = "static"): ?Closure {}
- public function call(object $newThis, mixed ...$args): mixed {}
- public static function fromCallable(callable $callback): Closure {}
- }
|