From 20e23d998638a72b2aea0a207311bcdcf5edbaae Mon Sep 17 00:00:00 2001 From: fabien Date: Fri, 9 Feb 2007 15:54:09 +0000 Subject: [PATCH] fixed missing argument to compile() method --- lib/Doctrine.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine.php b/lib/Doctrine.php index 34534894e..333d70931 100644 --- a/lib/Doctrine.php +++ b/lib/Doctrine.php @@ -400,12 +400,14 @@ final class Doctrine * including the compiled file instead of multiple files (in worst * cases dozens of files) can improve performance by an order of magnitude * + * @param string $target + * * @throws Doctrine_Exception * @return void */ - public static function compile() + public static function compile($target = null) { - Doctrine_Compiler::compile(); + Doctrine_Compiler::compile($target); } /** * simple autoload function