Exemple #1
0
 /**
  * Method for making a single file of most used doctrine runtime components
  * 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
  * @param array  $includedDrivers
  * @throws Doctrine_Exception
  * @return void
  */
 public static function compile($target = null, $includedDrivers = array())
 {
     return Doctrine_Compiler::compile($target, $includedDrivers);
 }
Exemple #2
0
 /**
  * compile
  * method for making a single file of most used doctrine runtime components
  * 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($target = null)
 {
     Doctrine_Compiler::compile($target);
 }