Automattic\WooCommerce\Vendor\League\Container\Inflector

Inflector::setProperty()publicWC 1.0

{@inheritdoc}

Метод класса: Inflector{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Inflector = new Inflector();
$Inflector->setProperty( $property, $value ) : InflectorInterface;
$property(строка) (обязательный)
-
$value (обязательный)
-

Код Inflector::setProperty() WC 8.7.0

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

    return $this;
}