Automattic\WooCommerce\Vendor\League\Container\Inflector

Inflector::setProperty()publicWC 1.0

{@inheritdoc}

Method of the class: Inflector{}

No Hooks.

Return

null. Nothing (null).

Usage

$Inflector = new Inflector();
$Inflector->setProperty( $property, $value ) : InflectorInterface;
$property(string) (required)
-
$value (required)
-

Inflector::setProperty() code WC 8.6.1

public function setProperty(string $property, $value) : InflectorInterface
{
    $this->properties[$property] = $this->resolveArguments([$value])[0];

    return $this;
}