StalkerClasses
Новичок
Постоянно вылетает такая ошибка: syntax error, unexpected '?'
vendor/symfony/yaml/Parser.php in line 509.
Открываю этот файл и вижу там следующее:
Обратите внимание на "?string" - откуда это вообще береться?
vendor/symfony/yaml/Parser.php in line 509.
Открываю этот файл и вижу там следующее:
PHP:
/**
* Returns the next embed block of YAML.
*
* @param int|null $indentation The indent level at which the block is to be read, or null for default
* @param bool $inSequence True if the enclosing data structure is a sequence
*
* @return string A YAML string
*
* @throws ParseException When indentation problem are detected
*/
private function getNextEmbedBlock(int $indentation = null, bool $inSequence = false): ?string
{
$oldLineIndentation = $this->getCurrentLineIndentation();
Обратите внимание на "?string" - откуда это вообще береться?