for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Josh\Faker;
/**
* Faker object
*
* @author Alireza Josheghani <[email protected]>
* @since 12 Dec 2016
* @method static fullname()
* @method static firstname()
* @method static lastname()
* @method static telephone()
* @method static age($min = 16,$max = 70)
* @method static email()
* @method static domain()
* @method static website()
* @method static pageUrl()
* @method static company()
* @method static mobile()
* @method static address()
* @method static city()
* @method static meliCode()
*/
class Faker
{
* Call method from magic method
* @param $method
* @return mixed
public function __get($method)
return faker()->$method();
}
* @since 3 Feb 2017
* @param $args
public static function __callStatic($method, $args)
return faker()->$method(...$args);