Automattic\WooCommerce\Vendor\Sabberworm\CSS\Comment
Commentable{}
Хуков нет.
Использование
$Commentable = new Commentable(); // use class methods
Методы
- public addComments(array $aComments)
- public getComments()
- public setComments(array $aComments)
Код Commentable{} Commentable{} WC 11.0.1
interface Commentable
{
/**
* @param array<array-key, Comment> $aComments
*
* @return void
*/
public function addComments(array $aComments);
/**
* @return array<array-key, Comment>
*/
public function getComments();
/**
* @param array<array-key, Comment> $aComments
*
* @return void
*/
public function setComments(array $aComments);
}