Eloquent\Phony\Reflection\Exception\UndefinedFeatureException::__construct PHP Метод

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

Construct a new undefined feature exception.
public __construct ( string $feature )
$feature string The feature.
    public function __construct($feature)
    {
        $this->feature = $feature;
        parent::__construct(sprintf('Undefined feature %s.', var_export($feature, true)));
    }
UndefinedFeatureException