Skip to content

Commit

Permalink
Reverted require statements in standalone scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
yohang committed Oct 25, 2011
1 parent 62c9072 commit 65cad98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/documentor.php
@@ -1,4 +1,7 @@
<?php
require_once __DIR__ . '/../src/Faker/Factory.php';
require_once __DIR__ . '/../src/Faker/Documentor.php';

$generator = Faker\Factory::create();
$generator->seed(1);
$documentor = new Faker\Documentor($generator);
Expand Down
1 change: 1 addition & 0 deletions test/test.php
@@ -1,4 +1,5 @@
<?php
require_once __DIR__ . '/../src/Faker/Factory.php';
$generator = Faker\Factory::create();
$generator->seed(5);
?>
Expand Down

0 comments on commit 65cad98

Please sign in to comment.