Skip to content

Commit

Permalink
renamed Application namespace to Sensio as decided during the last IR…
Browse files Browse the repository at this point in the history
…C meeting
  • Loading branch information
fabpot committed Jan 31, 2011
1 parent d3665f9 commit fd9ed41
Show file tree
Hide file tree
Showing 14 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/AppKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function registerBundles()
//new Symfony\Bundle\DoctrineMongoDBBundle\DoctrineMongoDBBundle(),

// register your bundles
new Application\HelloBundle\HelloBundle(),
new Sensio\HelloBundle\HelloBundle(),
);

if ($this->isDebug()) {
Expand Down
2 changes: 1 addition & 1 deletion app/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
$loader = new UniversalClassLoader();
$loader->registerNamespaces(array(
'Symfony' => __DIR__.'/../src/vendor/symfony/src',
'Application' => __DIR__.'/../src',
'Sensio' => __DIR__.'/../src',
'Bundle' => __DIR__.'/../src',
'Doctrine\\Common\\DataFixtures' => __DIR__.'/../src/vendor/doctrine-data-fixtures/lib',
'Doctrine\\Common' => __DIR__.'/../src/vendor/doctrine-common/lib',
Expand Down
8 changes: 4 additions & 4 deletions app/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
>
<testsuites>
<testsuite name="Project Test Suite">
<directory>../src/Application/*/Tests</directory>
<directory>../src/*/*Bundle/Tests</directory>
</testsuite>
</testsuites>

Expand All @@ -25,10 +25,10 @@

<filter>
<whitelist>
<directory>../src/Application</directory>
<directory>../src</directory>
<exclude>
<directory>../src/Application/*/Resources</directory>
<directory>../src/Application/*/Tests</directory>
<directory>../src/*/*Bundle/Resources</directory>
<directory>../src/*/*Bundle/Tests</directory>
</exclude>
</whitelist>
</filter>
Expand Down
Empty file removed src/Bundle/.symfony
Empty file.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Application\HelloBundle\Controller;
namespace Sensio\HelloBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Application\HelloBundle;
namespace Sensio\HelloBundle;

use Symfony\Component\HttpKernel\Bundle\Bundle;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Application\HelloBundle\Tests\Controller;
namespace Sensio\HelloBundle\Tests\Controller;

use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;

Expand Down

0 comments on commit fd9ed41

Please sign in to comment.