|
1
|
<?php |
|
2
|
namespace MailPoetVendor\Sabberworm\CSS\Comment; |
|
3
|
if (!defined('ABSPATH')) exit; |
|
4
|
interface Commentable |
|
5
|
{ |
|
6
|
public function addComments(array $aComments); |
|
7
|
public function getComments(); |
|
8
|
public function setComments(array $aComments); |
|
9
|
} |
|
10
|
|