Skip to content

Commit

Permalink
Remove namespace from config files.
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Aug 3, 2014
1 parent 0208da7 commit 4cc8e6e
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 19 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?php
namespace Company\TestPluginThree\Config;

use Cake\Core\Configure;

Configure::write('PluginTest.test_plugin_three.bootstrap', 'loaded plugin three bootstrap');
Configure::write('PluginTest.test_plugin_three.bootstrap', 'loaded plugin three bootstrap');
4 changes: 1 addition & 3 deletions tests/test_app/Plugin/PluginJs/config/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?php
namespace PluginJs\Config;

use Cake\Core\Configure;

Configure::write('PluginTest.js_plugin.bootstrap', 'loaded js plugin bootstrap');
Configure::write('PluginTest.js_plugin.bootstrap', 'loaded js plugin bootstrap');
4 changes: 1 addition & 3 deletions tests/test_app/Plugin/TestPlugin/config/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?php
namespace TestPlugin\Config;

use Cake\Core\Configure;

Configure::write('PluginTest.test_plugin.bootstrap', 'loaded plugin bootstrap');
Configure::write('PluginTest.test_plugin.bootstrap', 'loaded plugin bootstrap');
4 changes: 1 addition & 3 deletions tests/test_app/Plugin/TestPlugin/config/routes.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?php
namespace TestPlugin\Config;

use Cake\Core\Configure;

Configure::write('PluginTest.test_plugin.routes', 'loaded plugin routes');
Configure::write('PluginTest.test_plugin.routes', 'loaded plugin routes');
2 changes: 0 additions & 2 deletions tests/test_app/Plugin/TestPluginFour/config/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?php
namespace TestPluginFour\Config;

use Cake\Core\Configure;

Configure::write('PluginTest.test_plugin_four.bootstrap', 'loaded plugin four bootstrap');
4 changes: 1 addition & 3 deletions tests/test_app/Plugin/TestPluginTwo/config/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?php
namespace TestPluginTwo\Config;

use Cake\Core\Configure;

Configure::write('PluginTest.test_plugin_two.bootstrap', 'loaded plugin two bootstrap');
Configure::write('PluginTest.test_plugin_two.bootstrap', 'loaded plugin two bootstrap');
2 changes: 0 additions & 2 deletions tests/test_app/config/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
* @since 2.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace TestApp\Config;

use Cake\Routing\Router;

Router::parseExtensions('json');
Expand Down

0 comments on commit 4cc8e6e

Please sign in to comment.