/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/Message.php (2351B)
message = $message; $this->code = $code; $this->path = $path; $this->variables = $variables; } public function toString(): string { $vars = $this->variables; $vars['label'] = empty($vars['isKey']) ? 'item' : 'key of item'; $vars['path'] = $this->path ? "'" . implode("\u{a0}›\u{a0}", $this->path) . "'" : null; $vars['value'] = Helpers::formatValue($vars['value'] ?? null); return preg_replace_callback('~( ?)%(\w+)%~', function ($m) use ($vars) { [, $space, $key] = $m; return $vars[$key] === null ? '' : $space . $vars[$key]; }, $this->message); } }