moodle/lib/php-css-parser/Comment/Commentable.php
Frederic Massart fbe18cc022 MDL-55224 core: Import PHP-CSS-Parser into core
Part of MDL-55071
2016-09-23 10:49:49 +01:00

24 lines
358 B
PHP

<?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);
}