Automattic\WooCommerce\Vendor\Sabberworm\CSS\Comment
Commentable{}
No Hooks.
Usage
$Commentable = new Commentable(); // use class methods
Methods
- public addComments(array $aComments)
- public getComments()
- public setComments(array $aComments)
Commentable{} Commentable{} code WC 10.7.0
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);
}