1
0
mirror of synced 2024-12-14 15:16:04 +03:00

fixed missing argument to compile() method

This commit is contained in:
fabien 2007-02-09 15:54:09 +00:00
parent 52a5ec1704
commit 20e23d9986

View File

@ -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