Automattic\WooCommerce\Vendor\Sabberworm\CSS\CSSList
Document::createShorthands
Устарела с версии since 8.7.0, will be removed without substitution in version 9.0 in #511. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Create shorthands properties whenever possible.
Метод класса: Document{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Document = new Document(); $Document->createShorthands();
Список изменений
| Устарела | С версии 8.7.0 | , will be removed without substitution in version 9.0 in #511 |
Код Document::createShorthands() Document::createShorthands WC 11.0.1
public function createShorthands()
{
foreach ($this->getAllDeclarationBlocks() as $oDeclaration) {
$oDeclaration->createShorthands();
}
}