From ff1316ebc929e94bc30de447231b8fb2994b9fe2 Mon Sep 17 00:00:00 2001 From: pookey Date: Sun, 7 Oct 2007 16:21:04 +0000 Subject: [PATCH] allowing for PHP in YAML files to be parsed --- lib/Doctrine/Parser/Yml.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine/Parser/Yml.php b/lib/Doctrine/Parser/Yml.php index 8ecccc85d..4746913fd 100644 --- a/lib/Doctrine/Parser/Yml.php +++ b/lib/Doctrine/Parser/Yml.php @@ -66,9 +66,13 @@ class Doctrine_Parser_Yml extends Doctrine_Parser */ public function loadData($path) { + ob_start(); + $retval = include($path); + $contents = ob_get_clean(); + $spyc = new DoctrineSpyc(); - $array = $spyc->load($path); + $array = $spyc->load($contents); return $array; }