Skip to content

Commit

Permalink
move Configure namespace to Core\Configure
Browse files Browse the repository at this point in the history
  • Loading branch information
antograssiot committed Aug 29, 2014
1 parent 80b2127 commit 2903356
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/Core/Configure.php
Expand Up @@ -15,8 +15,8 @@
namespace Cake\Core;

use Cake\Cache\Cache;
use Cake\Configure\ConfigEngineInterface;
use Cake\Configure\Engine\PhpConfig;
use Cake\Core\Configure\ConfigEngineInterface;
use Cake\Core\Configure\Engine\PhpConfig;
use Cake\Error\Exception;
use Cake\Utility\Hash;

Expand Down
Expand Up @@ -12,7 +12,7 @@
* @since 1.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Configure;
namespace Cake\Core\Configure;

/**
* An interface for creating objects compatible with Configure::load()
Expand Down
Expand Up @@ -12,9 +12,9 @@
* @since 2.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Configure\Engine;
namespace Cake\Core\Configure\Engine;

use Cake\Configure\ConfigEngineInterface;
use Cake\Core\Configure\ConfigEngineInterface;
use Cake\Core\Plugin;
use Cake\Error;
use Cake\Utility\Hash;
Expand Down
Expand Up @@ -12,9 +12,9 @@
* @since 2.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Configure\Engine;
namespace Cake\Core\Configure\Engine;

use Cake\Configure\ConfigEngineInterface;
use Cake\Core\Configure\ConfigEngineInterface;
use Cake\Core\Plugin;
use Cake\Error;

Expand Down
2 changes: 1 addition & 1 deletion src/View/StringTemplate.php
Expand Up @@ -14,7 +14,7 @@
*/
namespace Cake\View;

use Cake\Configure\Engine\PhpConfig;
use Cake\Core\Configure\Engine\PhpConfig;
use Cake\Core\InstanceConfigTrait;

/**
Expand Down
Expand Up @@ -12,10 +12,10 @@
* @since 2.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Test\TestCase\Configure\Engine;
namespace Cake\Test\TestCase\Core\Configure\Engine;

use Cake\Configure\Engine\IniConfig;
use Cake\Core\App;
use Cake\Core\Configure\Engine\IniConfig;
use Cake\Core\Plugin;
use Cake\TestSuite\TestCase;

Expand Down
Expand Up @@ -12,10 +12,10 @@
* @since 2.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Test\TestCase\Configure\Engine;
namespace Cake\Test\TestCase\Core\Configure\Engine;

use Cake\Configure\Engine\PhpConfig;
use Cake\Core\App;
use Cake\Core\Configure\Engine\PhpConfig;
use Cake\Core\Plugin;
use Cake\TestSuite\TestCase;

Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Core/ConfigureTest.php
Expand Up @@ -15,9 +15,9 @@
namespace Cake\Test\TestCase\Core;

use Cake\Cache\Cache;
use Cake\Configure\Engine\PhpConfig;
use Cake\Core\App;
use Cake\Core\Configure;
use Cake\Core\Configure\Engine\PhpConfig;
use Cake\Core\Plugin;
use Cake\TestSuite\TestCase;

Expand Down

0 comments on commit 2903356

Please sign in to comment.