Skip to content
This repository has been archived by the owner on Jul 28, 2022. It is now read-only.

Commit

Permalink
Merge pull request #5 from centove/master
Browse files Browse the repository at this point in the history
Fix for issue #4
  • Loading branch information
dsyph3r committed Feb 21, 2012
2 parents 2312502 + f2ab871 commit 5cfb4c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Blogger/BlogBundle/DataFixtures/ORM/BlogFixtures.php
Expand Up @@ -8,7 +8,7 @@

class BlogFixtures extends AbstractFixture implements OrderedFixtureInterface
{
public function load($manager)
public function load(\Doctrine\Common\Persistence\ObjectManager $manager)
{
$blog1 = new Blog();
$blog1->setTitle('A day with Symfony2');
Expand Down Expand Up @@ -73,4 +73,4 @@ public function getOrder()
{
return 1;
}
}
}
4 changes: 2 additions & 2 deletions src/Blogger/BlogBundle/DataFixtures/ORM/CommentFixtures.php
Expand Up @@ -9,7 +9,7 @@

class CommentFixtures extends AbstractFixture implements OrderedFixtureInterface
{
public function load($manager)
public function load(\Doctrine\Common\Persistence\ObjectManager $manager)
{
$comment = new Comment();
$comment->setUser('symfony');
Expand Down Expand Up @@ -123,4 +123,4 @@ public function getOrder()
{
return 2;
}
}
}

0 comments on commit 5cfb4c6

Please sign in to comment.