コード例 #1
0
ファイル: Yaml.php プロジェクト: sirdiego/importr
 public static function enablePhpParsing()
 {
     self::$enablePhpParsing = TRUE;
 }
コード例 #2
0
ファイル: Yaml.php プロジェクト: QianmiHub/crypto-js
 public static function enablePhpParsing()
 {
     self::$enablePhpParsing = true;
 }
コード例 #3
0
ファイル: Yaml.php プロジェクト: joan16v/symfony2_test
 /**
  * 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;
 }