예제 #1
0
파일: Yaml.php 프로젝트: sirdiego/importr
 public static function enablePhpParsing()
 {
     self::$enablePhpParsing = TRUE;
 }
예제 #2
0
 public static function enablePhpParsing()
 {
     self::$enablePhpParsing = true;
 }
예제 #3
0
 /**
  * Sets the PHP support flag when parsing YAML files.
  *
  * Be warned that PHP support will be removed in Symfony 2.3.
  *
  * @param Boolean $boolean true if PHP parsing support is enabled, false otherwise
  *
  * @deprecated Deprecated since version 2.0, to be removed in 2.3.
  */
 public static function setPhpParsing($boolean)
 {
     self::$enablePhpParsing = (bool) $boolean;
 }