Added support for Streamdeck Pedal and updated UI to better fit the Packed UI style
This commit is contained in:
25
pirp/vendor/sabberworm/php-css-parser/src/Comment/Commentable.php
vendored
Normal file
25
pirp/vendor/sabberworm/php-css-parser/src/Comment/Commentable.php
vendored
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user