You are here

public function Quota::isLimited in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/Quota.php \org\bovigo\vfs\Quota::isLimited()

checks if a quota is set

Return value

bool

File

vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/Quota.php, line 57

Class

Quota
Represents a quota for disk space.

Namespace

org\bovigo\vfs

Code

public function isLimited() {
  return self::UNLIMITED < $this->amount;
}