mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-25 20:57:10 +00:00
Initial commit
This commit is contained in:
38
vendor/fzaninotto/faker/src/Faker/DefaultGenerator.php
vendored
Normal file
38
vendor/fzaninotto/faker/src/Faker/DefaultGenerator.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
namespace Faker;
|
||||
|
||||
/**
|
||||
* This generator returns a default value for all called properties
|
||||
* and methods. It works with Faker\Generator\Base->optional().
|
||||
*/
|
||||
class DefaultGenerator
|
||||
{
|
||||
protected $default;
|
||||
|
||||
public function __construct($default = null)
|
||||
{
|
||||
$this->default = $default;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $attribute
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function __get($attribute)
|
||||
{
|
||||
return $this->default;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $method
|
||||
* @param array $attributes
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function __call($method, $attributes)
|
||||
{
|
||||
return $this->default;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user