1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-04-14 12:32:03 +02:00

Removed require statements

This commit is contained in:
yohang 2011-10-25 16:07:48 +02:00
parent 4319b37d54
commit add655eca7
23 changed files with 0 additions and 47 deletions

View File

@ -2,8 +2,6 @@
namespace Faker;
require_once __DIR__ . '/Generator.php';
class Factory
{
const DEFAULT_LOCALE = 'en_US';

View File

@ -2,9 +2,6 @@
namespace Faker\ORM\Propel;
include __DIR__ . '/../../Guesser/Name.php';
include __DIR__ . '/ColumnTypeGuesser.php';
/**
* Service class for populating a table through a Propel ActiveRecord class.
*/

View File

@ -2,8 +2,6 @@
namespace Faker\ORM\Propel;
require_once __DIR__ . '/EntityPopulator.php';
/**
* Service class for populating a database using the Propel ORM.
* A Populator can populate several tables using ActiveRecord classes.

View File

@ -2,8 +2,6 @@
namespace Faker\Provider;
require_once __DIR__ . '/Base.php';
class Address extends \Faker\Provider\Base
{
protected static $citySuffix = array('Ville');

View File

@ -2,8 +2,6 @@
namespace Faker\Provider;
require_once __DIR__ . '/Base.php';
class Company extends \Faker\Provider\Base
{
protected static $formats = array(

View File

@ -2,8 +2,6 @@
namespace Faker\Provider;
require_once __DIR__ . '/Base.php';
class DateTime extends \Faker\Provider\Base
{
protected static $century = array('I','II','III','IV','V','VI','VII','VIII','IX','X','XI','XII','XIII','XIV','XV','XVI','XVII','XVIII','XIX','XX','XX1');

View File

@ -2,8 +2,6 @@
namespace Faker\Provider;
require_once __DIR__ . '/Base.php';
class Internet extends \Faker\Provider\Base
{
protected static $safeEmailTld = array('org', 'com', 'net');

View File

@ -2,8 +2,6 @@
namespace Faker\Provider;
require_once __DIR__ . '/Base.php';
class Lorem extends \Faker\Provider\Base
{
protected static $wordList = array(

View File

@ -2,8 +2,6 @@
namespace Faker\Provider;
require_once __DIR__ . '/Base.php';
class Miscellaneous extends \Faker\Provider\Base
{

View File

@ -2,8 +2,6 @@
namespace Faker\Provider;
require_once __DIR__ . '/Base.php';
class Person extends \Faker\Provider\Base
{
protected static $formats = array(

View File

@ -2,8 +2,6 @@
namespace Faker\Provider;
require_once __DIR__ . '/Base.php';
class PhoneNumber extends \Faker\Provider\Base
{
protected static $formats = array('###-###-###');

View File

@ -2,8 +2,6 @@
namespace Faker\Provider\en_GB;
require_once __DIR__ . '/../Address.php';
class Address extends \Faker\Provider\Address
{
protected static $cityPrefix = array('North', 'East', 'West', 'South', 'New', 'Lake', 'Port');

View File

@ -2,8 +2,6 @@
namespace Faker\Provider\en_GB;
require_once __DIR__ . '/../Internet.php';
class Internet extends \Faker\Provider\Internet
{
protected static $safeEmailTld = array('org', 'com', 'net', 'co.uk');

View File

@ -2,8 +2,6 @@
namespace Faker\Provider\en_GB;
require_once __DIR__ . '/../PhoneNumber.php';
class PhoneNumber extends \Faker\Provider\PhoneNumber
{
protected static $formats = array(

View File

@ -2,8 +2,6 @@
namespace Faker\Provider\en_US;
require_once __DIR__ . '/../Address.php';
class Address extends \Faker\Provider\Address
{
protected static $cityPrefix = array('North', 'East', 'West', 'South', 'New', 'Lake', 'Port');

View File

@ -2,8 +2,6 @@
namespace Faker\Provider\en_US;
require_once __DIR__ . '/../Company.php';
class Company extends \Faker\Provider\Company
{
protected static $formats = array(

View File

@ -2,8 +2,6 @@
namespace Faker\Provider\en_US;
require_once __DIR__ . '/../Person.php';
class Person extends \Faker\Provider\Person
{
protected static $formats = array(

View File

@ -2,8 +2,6 @@
namespace Faker\Provider\en_US;
require_once __DIR__ . '/../PhoneNumber.php';
class PhoneNumber extends \Faker\Provider\PhoneNumber
{
protected static $formats = array(

View File

@ -2,8 +2,6 @@
namespace Faker\Provider\fr_FR;
require_once __DIR__ . '/../Person.php';
class Person extends \Faker\Provider\Person
{
protected static $formats = array(

View File

@ -2,8 +2,6 @@
namespace Faker\Test;
require_once __DIR__ . '/../../src/Faker/Generator.php';
use Faker\Generator;
class GeneratorTest extends \PHPUnit_Framework_TestCase

View File

@ -2,8 +2,6 @@
namespace Faker\Test\Provider;
require_once __DIR__ . '/../../../src/Faker/Provider/Base.php';
use Faker\Provider\Base as BaseProvider;
class BaseTest extends \PHPUnit_Framework_TestCase

View File

@ -1,7 +1,4 @@
<?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);

View File

@ -1,5 +1,4 @@
<?php
require_once __DIR__ . '/../src/Faker/Factory.php';
$generator = Faker\Factory::create();
$generator->seed(5);
?>