Automattic\WooCommerce\Vendor\League\Container\Inflector

Inflector::setProperties()publicWC 1.0

{@inheritdoc}

Method of the class: Inflector{}

No Hooks.

Return

null. Nothing (null).

Usage

$Inflector = new Inflector();
$Inflector->setProperties( $properties ) : InflectorInterface;
$properties(array) (required)
-

Inflector::setProperties() code WC 8.7.0

public function setProperties(array $properties) : InflectorInterface
{
    foreach ($properties as $property => $value) {
        $this->setProperty($property, $value);
    }

    return $this;
}