Analyzer.php
1 year ago
ClosureContext.php
2 years ago
ClosureScope.php
2 years ago
ClosureStream.php
1 year ago
ISecurityProvider.php
2 years ago
ReflectionClosure.php
1 year ago
SecurityException.php
2 years ago
SecurityProvider.php
1 year ago
SelfReference.php
2 years ago
SerializableClosure.php
1 year ago
ClosureScope.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | /* =========================================================================== |
| 4 | * Copyright (c) 2018-2021 Zindex Software |
| 5 | * |
| 6 | * Licensed under the MIT License |
| 7 | * =========================================================================== */ |
| 8 | namespace Matomo\Dependencies\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 | * @var integer Number of closures that have to be serialized |
| 22 | */ |
| 23 | public $toserialize = 0; |
| 24 | } |
| 25 |