/opt/cpanel/ea-wappspector/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs
NameSizeModeActions
content/-0755rm
visitor/-0755rm
DotDirectory.php6890644editdlrm
Quota.php15570644editdlrm
vfsStream.php156430644editdlrm
vfsStreamAbstractContent.php87260644editdlrm
vfsStreamBlock.php7290644editdlrm
vfsStreamContainer.php13490644editdlrm
vfsStreamContainerIterator.php19550644editdlrm
vfsStreamContent.php43120644editdlrm
vfsStreamDirectory.php60070644editdlrm
vfsStreamException.php3650644editdlrm
vfsStreamFile.php96830644editdlrm
vfsStreamWrapper.php295640644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/Quota.php (1557B)
amount = $amount; } /** * create with unlimited space * * @return Quota */ public static function unlimited() { return new self(self::UNLIMITED); } /** * checks if a quota is set * * @return bool */ public function isLimited() { return self::UNLIMITED < $this->amount; } /** * checks if given used space exceeda quota limit * * * @param int $usedSpace * @return int */ public function spaceLeft($usedSpace) { if (self::UNLIMITED === $this->amount) { return $usedSpace; } if ($usedSpace >= $this->amount) { return 0; } $spaceLeft = $this->amount - $usedSpace; if (0 >= $spaceLeft) { return 0; } return $spaceLeft; } }