/home/techb158/dev.balacoffee.com/vendor/nette/schema/src/Schema
NameSizeModeActions
Elements/-0755rm
Context.php11340644editdlrm
DynamicParameter.php2220644editdlrm
Expect.php25150644editdlrm
Helpers.php53040644editdlrm
Message.php23510644editdlrm
Processor.php19800644editdlrm
Schema.php5620644editdlrm
ValidationException.php8490644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/nette/schema/src/Schema/Context.php (1134B)
isKey; return $this->errors[] = new Message($message, $code, $this->path, $variables); } public function addWarning(string $message, string $code, array $variables = []): Message { return $this->warnings[] = new Message($message, $code, $this->path, $variables); } /** @return \Closure(): bool */ public function createChecker(): \Closure { $count = count($this->errors); return function () use ($count): bool { return $count === count($this->errors); }; } }