Skip to content

Commit

Permalink
adjust namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
dbu committed Feb 23, 2018
1 parent c7b7d4e commit 3a1bfef
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Empty file added src/Controller/.gitignore
Empty file.
2 changes: 1 addition & 1 deletion src/DataFixtures/PHPCR/LoadNewsData.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 <a href="https://github.com/symfony-cmf/cmf-sandbox/blob/master/src/AppBundle/Resources/config/cmf_routing_auto.yml">configuration file</a> to see how this works.
See the routing auto <a href="https://github.com/symfony-cmf/cmf-sandbox/blob/master/src/Resources/config/cmf_routing_auto.yml">configuration file</a> to see how this works.
EOT
);

Expand Down
2 changes: 1 addition & 1 deletion src/Resources/data/page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static:
body: To log into the <a href="admin/dashboard">backend admin</a>, 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:
Expand Down
6 changes: 3 additions & 3 deletions tests/Functional/WebTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3a1bfef

Please sign in to comment.