Automattic\WooCommerce\Vendor\League\Container\Inflector

Inflector::invokeMethods()publicWC 1.0

{@inheritdoc}

Method of the class: Inflector{}

No Hooks.

Return

null. Nothing (null).

Usage

$Inflector = new Inflector();
$Inflector->invokeMethods( $methods ) : InflectorInterface;
$methods(array) (required)
-

Inflector::invokeMethods() code WC 8.7.0

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

    return $this;
}