diff --git a/src/Controller/.gitignore b/src/Controller/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/src/DataFixtures/PHPCR/LoadNewsData.php b/src/DataFixtures/PHPCR/LoadNewsData.php index c86edad2..f015018e 100644 --- a/src/DataFixtures/PHPCR/LoadNewsData.php +++ b/src/DataFixtures/PHPCR/LoadNewsData.php @@ -49,7 +49,7 @@ public function load(ObjectManager $manager) 'This is a news item which demonstrates the routing auto bundle. The routing auto bundle automatically creates routes for documents which are persisted. -See the routing auto configuration file to see how this works. +See the routing auto configuration file to see how this works. EOT ); diff --git a/src/Resources/data/page.yml b/src/Resources/data/page.yml index 4d69e0c5..28307556 100644 --- a/src/Resources/data/page.yml +++ b/src/Resources/data/page.yml @@ -37,7 +37,7 @@ static: body: To log into the backend admin, use the username 'admin' and the password 'admin'. child3: class: Symfony\Cmf\Bundle\BlockBundle\Doctrine\Phpcr\ActionBlock - actionName: AppBundle:Default:block + actionName: App:Default:block rssBlock: class: Symfony\Cmf\Bundle\BlockBundle\Doctrine\Phpcr\RssBlock properties: diff --git a/tests/Functional/WebTestCase.php b/tests/Functional/WebTestCase.php index bd29b15c..d0fb17d1 100644 --- a/tests/Functional/WebTestCase.php +++ b/tests/Functional/WebTestCase.php @@ -25,9 +25,9 @@ public function setUp() } $this->loadFixtures([ - 'AppBundle\DataFixtures\PHPCR\LoadStaticPageData', - 'AppBundle\DataFixtures\PHPCR\LoadMenuData', - 'AppBundle\DataFixtures\PHPCR\LoadRoutingData', + 'App\DataFixtures\PHPCR\LoadStaticPageData', + 'App\DataFixtures\PHPCR\LoadMenuData', + 'App\DataFixtures\PHPCR\LoadRoutingData', ], null, 'doctrine_phpcr'); self::$fixturesLoaded = true;