function Parser::isCurrentLineBlank
4 calls to Parser::isCurrentLineBlank()
- Parser::getNextEmbedBlock in vendor/
symfony/ yaml/ Parser.php - Returns the next embed block of YAML.
- Parser::isCurrentLineEmpty in vendor/
symfony/ yaml/ Parser.php - Parser::lexInlineQuotedString in vendor/
symfony/ yaml/ Parser.php - Parser::parseBlockScalar in vendor/
symfony/ yaml/ Parser.php - Parses a block scalar.
File
-
vendor/
symfony/ yaml/ Parser.php, line 962
Class
- Parser
- Parser parses YAML strings to convert them to PHP arrays.
Namespace
Symfony\Component\YamlCode
private function isCurrentLineBlank() : bool {
return '' === $this->currentLine || '' === trim($this->currentLine, ' ');
}