/var/www/flurhymez/vendor/nette/schema/src/Schema
NameSizeModeActions
Elements/-0755rm
Context.php9270644editdlrm
DynamicParameter.php2220644editdlrm
Expect.php25130644editdlrm
Helpers.php25390644editdlrm
Message.php19010644editdlrm
Processor.php19780644editdlrm
Schema.php5620644editdlrm
ValidationException.php8480644editdlrm
Edit: /var/www/flurhymez/vendor/nette/schema/src/Schema/Message.php (1901B)
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(' › ', $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); } }