Вход Регистрация
Файл: src/vendor/fzaninotto/faker/src/Faker/DefaultGenerator.php
Строк: 19
<?php

namespace Faker;

/**
 * This generator returns a default value for all called properties
 * and methods. It works with FakerGeneratorBase->optional().
 */
class DefaultGenerator
{
    protected 
$default null;

    public function 
__construct($default null)
    {
        
$this->default $default;
    }

    public function 
__get($attribute)
    {
        return 
$this->default;
    }

    public function 
__call($method$attributes)
    {
        return 
$this->default;
    }
}
Онлайн: 2
Реклама