poc form SDK (css)

This commit is contained in:
Benjamin Dalsass
2023-09-25 10:22:38 +02:00
parent 73328d6e99
commit fa244cafb5
3606 changed files with 594761 additions and 86 deletions

View File

@@ -0,0 +1,25 @@
<?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);
}