Automattic\WooCommerce\Vendor\League\Container\Inflector

Inflector::invokeMethods()publicWC 1.0

{@inheritdoc}

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

Хуков нет.

Возвращает

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

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

$Inflector = new Inflector();
$Inflector->invokeMethods( $methods ) : InflectorInterface;
$methods(массив) (обязательный)
-

Код Inflector::invokeMethods() WC 8.7.0

public function invokeMethods(array $methods) : InflectorInterface
{
    foreach ($methods as $name => $args) {
        $this->invokeMethod($name, $args);
    }

    return $this;
}