move spacename to CLChillMain to ChillMain

This commit is contained in:
2014-10-17 08:27:31 +02:00
parent f44abb26fe
commit d9aa417e3c
27 changed files with 61 additions and 121 deletions

View File

@@ -1,6 +1,6 @@
<?php
namespace CL\Chill\MainBundle\Tests\Controller;
namespace Chill\MainBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;

View File

@@ -9,7 +9,7 @@ class AppKernel extends Kernel
{
return array(
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new \CL\Chill\MainBundle\CLChillMainBundle(),
new Chill\MainBundle\ChillMainBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new \Symfony\Bundle\AsseticBundle\AsseticBundle(),

View File

@@ -1,9 +1,9 @@
hello_bundle:
resource: "@CLChillMainBundle/Resources/config/routing.yml"
resource: "@ChillMainBundle/Resources/config/routing.yml"
chill_main_dummy_0:
pattern: /dummy
defaults: { _controller: CLChillMainBundle:Default:index }
defaults: { _controller: ChillMainBundle:Default:index }
options:
menus:
dummy0:
@@ -16,7 +16,7 @@ chill_main_dummy_0:
chill_main_dummy_1:
pattern: /dummy1
defaults: { _controller: CLChillMainBundle:Default:index }
defaults: { _controller: ChillMainBundle:Default:index }
options:
menus:
dummy0:
@@ -26,7 +26,7 @@ chill_main_dummy_1:
chill_main_dummy_2:
pattern: /dummy2/{param}
defaults: {_controller: CLChillMainBundle:Default:index }
defaults: {_controller: ChillMainBundle:Default:index }
options:
menus:
dummy0:

View File

@@ -18,7 +18,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace CL\Chill\MainBundle\Tests\Services;
namespace Chill\MainBundle\Tests\Services;
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
use Symfony\Component\DomCrawler\Crawler;

View File

@@ -1,6 +1,6 @@
<?php
namespace CL\Chill\MainBundle\Tests\Services;
namespace Chill\MainBundle\Tests\Services;
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
use Symfony\Component\Routing\RouteCollection;
@@ -21,7 +21,7 @@ class MenuComposerTest extends KernelTestCase
/**
*
* @var \CL\Chill\MainBundle\DependencyInjection\Services\MenuComposer;
* @var \Chill\MainBundle\DependencyInjection\Services\MenuComposer;
*/
private $menuComposer;
@@ -33,7 +33,7 @@ class MenuComposerTest extends KernelTestCase
}
/**
* @covers \CL\Chill\MainBundle\Routing\MenuComposer
* @covers \Chill\MainBundle\Routing\MenuComposer
*/
public function testMenuComposer()
{