Moodle release 4.0
[moodle.git] / lib / php-css-parser / Comment / Commentable.php
blob3100f17a8fa3ec045e1618ded5f71cf23cf2887a
1 <?php
3 namespace Sabberworm\CSS\Comment;
5 interface Commentable {
7 /**
8 * @param array $aComments Array of comments.
9 */
10 public function addComments(array $aComments);
12 /**
13 * @return array
15 public function getComments();
17 /**
18 * @param array $aComments Array containing Comment objects.
20 public function setComments(array $aComments);