Skip to content

Commit

Permalink
Adding a few class loading related changes to make the ApiGenerator p…
Browse files Browse the repository at this point in the history
…lugin happy
  • Loading branch information
lorenzo committed Sep 30, 2011
1 parent 8acd980 commit fff42e9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions lib/Cake/Console/Command/Task/BakeTask.php
Expand Up @@ -15,6 +15,8 @@
* @since CakePHP(tm) v 1.3
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

App::uses('Shell', 'Console');
/**
* Base class for Bake Tasks.
*
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/TestSuite/CakeTestRunner.php
Expand Up @@ -15,7 +15,7 @@
* @since CakePHP(tm) v 2.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
require 'PHPUnit/TextUI/TestRunner.php';
require_once 'PHPUnit/TextUI/TestRunner.php';

PHP_CodeCoverage_Filter::getInstance()->addFileToBlacklist(__FILE__, 'DEFAULT');

Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/TestSuite/CakeTestSuiteCommand.php
Expand Up @@ -17,7 +17,7 @@
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

require 'PHPUnit/TextUI/Command.php';
require_once 'PHPUnit/TextUI/Command.php';

App::uses('CakeTestRunner', 'TestSuite');
App::uses('CakeTestLoader', 'TestSuite');
Expand Down

0 comments on commit fff42e9

Please sign in to comment.