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
ClosureContext.php
33 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 context class |
| 12 | * @internal |
| 13 | */ |
| 14 | class ClosureContext |
| 15 | { |
| 16 | /** |
| 17 | * @var ClosureScope Closures scope |
| 18 | */ |
| 19 | public $scope; |
| 20 | /** |
| 21 | * @var integer |
| 22 | */ |
| 23 | public $locks; |
| 24 | /** |
| 25 | * Constructor |
| 26 | */ |
| 27 | public function __construct() |
| 28 | { |
| 29 | $this->scope = new ClosureScope(); |
| 30 | $this->locks = 0; |
| 31 | } |
| 32 | } |
| 33 |