Nelmio\Alice\Definition\Property::__construct PHP Метод

__construct() публичный Метод

public __construct ( string $name, Nelmio\Alice\Definition\ValueInterface | mixed $value )
$name string Fixture property name, e.g. 'username' (no flags expected)
$value Nelmio\Alice\Definition\ValueInterface | mixed
    public function __construct(string $name, $value)
    {
        $this->name = $name;
        $this->value = $value;
    }