private function Parser::isCurrentLineBlank in Plug 7
Returns true if the current line is blank.
Return value
bool Returns true if the current line is blank, false otherwise
3 calls to Parser::isCurrentLineBlank()
- Parser::getNextEmbedBlock in lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Parser.php - Returns the next embed block of YAML.
- Parser::isCurrentLineEmpty in lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Parser.php - Returns true if the current line is blank or if it is a comment line.
- Parser::parseFoldedScalar in lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Parser.php - Parses a folded scalar.
File
- lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Parser.php, line 600
Class
- Parser
- Parser parses YAML strings to convert them to PHP arrays.
Namespace
Symfony\Component\YamlCode
private function isCurrentLineBlank() {
return '' == trim($this->currentLine, ' ');
}