Skip to content

Commit

Permalink
Move ConnectionManager to Database namespace
Browse files Browse the repository at this point in the history
This puts it closer to the Connection objects it manages.
  • Loading branch information
markstory committed Aug 24, 2013
1 parent 1bab677 commit d9183ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Expand Up @@ -14,7 +14,7 @@
* @since CakePHP(tm) v 0.10.x.1402
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Model;
namespace Cake\Database;

use Cake\Core\App;
use Cake\Core\Configure;
Expand Down
@@ -1,31 +1,26 @@
<?php
/**
* Connection Manager tests
*
* PHP 5
*
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
* @package Cake.Test.Case.Model
* @since CakePHP(tm) v 1.2.0.5550
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Test\TestCase\Model;

use Cake\Core\App;
use Cake\Core\Plugin;
use Cake\Model\ConnectionManager;
use Cake\Database\ConnectionManager;
use Cake\TestSuite\TestCase;

/**
* ConnectionManagerTest
*
* @package Cake.Test.Case.Model
*/
class ConnectionManagerTest extends TestCase {

Expand Down

0 comments on commit d9183ed

Please sign in to comment.