Analyzer.php
5 years ago
ClosureContext.php
5 years ago
ClosureScope.php
5 years ago
ClosureStream.php
5 years ago
ISecurityProvider.php
5 years ago
ReflectionClosure.php
5 years ago
SecurityException.php
5 years ago
SecurityProvider.php
5 years ago
SelfReference.php
5 years ago
SerializableClosure.php
5 years ago
ClosureScope.php
25 lines
| 1 | <?php |
| 2 | /* =========================================================================== |
| 3 | * Copyright (c) 2018-2019 Zindex Software |
| 4 | * |
| 5 | * Licensed under the MIT License |
| 6 | * =========================================================================== */ |
| 7 | |
| 8 | namespace Opis\Closure; |
| 9 | |
| 10 | /** |
| 11 | * Closure scope class |
| 12 | * @internal |
| 13 | */ |
| 14 | class ClosureScope extends \SplObjectStorage |
| 15 | { |
| 16 | /** |
| 17 | * @var integer Number of serializations in current scope |
| 18 | */ |
| 19 | public $serializations = 0; |
| 20 | |
| 21 | /** |
| 22 | * @var integer Number of closures that have to be serialized |
| 23 | */ |
| 24 | public $toserialize = 0; |
| 25 | } |