mirror of
https://github.com/moodle/moodle.git
synced 2025-05-17 21:50:38 +02:00
24 lines
358 B
PHP
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);
|
|
|
|
|
|
}
|