From 02a57e4ceb733cea215d36fc437a5af2566c0255 Mon Sep 17 00:00:00 2001 From: "Jonathan.Wage" Date: Thu, 3 Jan 2008 20:14:50 +0000 Subject: [PATCH] Removed $aggressive param as it is not needed and was left there by mistake. --- lib/Doctrine.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/Doctrine.php b/lib/Doctrine.php index d155f2c6a..03b9fa54c 100644 --- a/lib/Doctrine.php +++ b/lib/Doctrine.php @@ -523,11 +523,9 @@ final class Doctrine * Recursively load all models from a directory or array of directories * * @param string $directory Path to directory of models or array of directory paths - * @param bool $aggressive Bool true/false for whether to load models aggressively. - * If true it will require_once() all found .php files * @return array $loadedModels */ - public static function loadModels($directory, $agressive = true) + public static function loadModels($directory) { $loadedModels = array();