DI\Definition\Helper\ObjectDefinitionHelper::property PHP Method

property() public method

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.
return ObjectDefinitionHelper
    public function property($property, $value)
    {
        $this->properties[$property] = $value;
        return $this;
    }