You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
587 B
25 lines
587 B
<?php
|
|
/* ===========================================================================
|
|
* Copyright (c) 2018-2021 Zindex Software
|
|
*
|
|
* Licensed under the MIT License
|
|
* =========================================================================== */
|
|
|
|
namespace Opis\Closure;
|
|
|
|
/**
|
|
* Closure scope class
|
|
* @internal
|
|
*/
|
|
class ClosureScope extends \SplObjectStorage
|
|
{
|
|
/**
|
|
* @var integer Number of serializations in current scope
|
|
*/
|
|
public $serializations = 0;
|
|
|
|
/**
|
|
* @var integer Number of closures that have to be serialized
|
|
*/
|
|
public $toserialize = 0;
|
|
}
|