mirror of
https://github.com/moodle/moodle.git
synced 2025-03-12 11:49:49 +01:00
26 lines
452 B
PHP
26 lines
452 B
PHP
<?php
|
|
|
|
namespace Sabberworm\CSS\Comment;
|
|
|
|
interface Commentable
|
|
{
|
|
/**
|
|
* @param array<array-key, Comment> $aComments
|
|
*
|
|
* @return void
|
|
*/
|
|
public function addComments(array $aComments);
|
|
|
|
/**
|
|
* @return array<array-key, Comment>
|
|
*/
|
|
public function getComments();
|
|
|
|
/**
|
|
* @param array<array-key, Comment> $aComments
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setComments(array $aComments);
|
|
}
|