Commit 20e23d99 authored by fabien's avatar fabien

fixed missing argument to compile() method

parent 52a5ec17
...@@ -400,12 +400,14 @@ final class Doctrine ...@@ -400,12 +400,14 @@ final class Doctrine
* including the compiled file instead of multiple files (in worst * including the compiled file instead of multiple files (in worst
* cases dozens of files) can improve performance by an order of magnitude * cases dozens of files) can improve performance by an order of magnitude
* *
* @param string $target
*
* @throws Doctrine_Exception * @throws Doctrine_Exception
* @return void * @return void
*/ */
public static function compile() public static function compile($target = null)
{ {
Doctrine_Compiler::compile(); Doctrine_Compiler::compile($target);
} }
/** /**
* simple autoload function * simple autoload function
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment