Files
iTop/lib/sabberworm/php-css-parser/src/Comment/Commentable.php
Benjamin Dalsass fa244cafb5 poc form SDK (css)
2023-09-25 10:27:50 +02:00

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