Skip to content

Commit

Permalink
Merge pull request fzaninotto#11 from willdurand/fix-notice-error
Browse files Browse the repository at this point in the history
Fixed notice error if no entities
  • Loading branch information
fzaninotto committed Oct 25, 2011
2 parents 47d7aa2 + 99fbd52 commit 4319b37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Faker/ORM/Propel/Populator.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
class Populator
{
protected $generator;
protected $entities;
protected $quantities;
protected $entities = array();
protected $quantities = array();

public function __construct(\Faker\Generator $generator)
{
Expand Down

0 comments on commit 4319b37

Please sign in to comment.