Returns true if the current line is blank.
Return value
Boolean Returns true if the current line is blank, false otherwise
File
 
   - drupal/core/vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php, line 518
 
  
  Class
  
  - Parser 
 
  - Parser parses YAML strings to convert them to PHP arrays.
 
  Namespace
  Symfony\Component\Yaml
Code
private function isCurrentLineBlank() {
  return '' == trim($this->currentLine, ' ');
}