bandwidthThrottle\tokenBucket\storage\FileStorage::__construct PHP Method

__construct() public method

If the file does not exist yet, it will be created. This is an atomic operation.
public __construct ( string $path )
$path string The file path.
    public function __construct($path)
    {
        $this->path = $path;
        $this->open();
    }