Automattic\WooCommerce\Vendor\League\Container\Definition

Definition::setShared()publicWC 1.0

{@inheritdoc}

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

Хуков нет.

Возвращает

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

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

$Definition = new Definition();
$Definition->setShared( $shared ) : DefinitionInterface;
$shared(true|false)
-
По умолчанию: true

Код Definition::setShared() WC 8.7.0

public function setShared(bool $shared = true) : DefinitionInterface
{
    $this->shared = $shared;

    return $this;
}