File "ClosureScope.php"

Full Path: /home/amervokv/ecomlive.net/wp-content/plugins/elementor/vendor_prefixed/laravel/serializable-closure/src/Support/ClosureScope.php
File size: 390 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace ElementorDeps\Laravel\SerializableClosure\Support;

use SplObjectStorage;
class ClosureScope extends SplObjectStorage
{
    /**
     * The number of serializations in current scope.
     *
     * @var int
     */
    public $serializations = 0;
    /**
     * The number of closures that have to be serialized.
     *
     * @var int
     */
    public $toSerialize = 0;
}