DI\Definition\Helper\ObjectDefinitionHelper::property PHP Метод

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

Defines a value to inject in a property of the object.
public property ( string $property, mixed $value ) : ObjectDefinitionHelper
$property string Entry in which to inject the value.
$value mixed Value to inject in the property.
Результат ObjectDefinitionHelper
    public function property($property, $value)
    {
        $this->properties[$property] = $value;
        return $this;
    }