<?php
namespace Sabberworm\CSS\Comment;
< interface Commentable {
<
> interface Commentable
> {
/**
< * @param array $aComments Array of comments.
> * @param array<array-key, Comment> $aComments
> *
> * @return void
*/
public function addComments(array $aComments);
/**
< * @return array
> * @return array<array-key, Comment>
*/
public function getComments();
/**
< * @param array $aComments Array containing Comment objects.
> * @param array<array-key, Comment> $aComments
> *
> * @return void
*/
public function setComments(array $aComments);
<
<
}