sonarrradarrplexorganizrnginxdashboardlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximux
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
669 B
38 lines
669 B
<?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;
|
|
}
|
|
}
|
|
|