Automattic\WooCommerce\Vendor\League\Container
Container::inflector()
Allows for manipulation of specific types on resolution.
Метод класса: Container{}
Хуков нет.
Возвращает
InflectorInterface
.
Использование
$Container = new Container(); $Container->inflector( $type, $callback ) : InflectorInterface;
- $type(строка) (обязательный)
- -
- $callback(callable|null)
- -
По умолчанию: null
Код Container::inflector() Container::inflector WC 7.5.1
public function inflector(string $type, callable $callback = null) : InflectorInterface { return $this->inflectors->add($type, $callback); }