You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
358 B
24 lines
358 B
2 years ago
|
<?php
|
||
|
|
||
|
namespace Sabberworm\CSS\Comment;
|
||
|
|
||
|
interface Commentable {
|
||
|
|
||
|
/**
|
||
|
* @param array $aComments Array of comments.
|
||
|
*/
|
||
|
public function addComments(array $aComments);
|
||
|
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
public function getComments();
|
||
|
|
||
|
/**
|
||
|
* @param array $aComments Array containing Comment objects.
|
||
|
*/
|
||
|
public function setComments(array $aComments);
|
||
|
|
||
|
|
||
|
}
|