Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
core
/
vendor
/
sabberworm
/
php-css-parser
/
lib
/
Sabberworm
/
CSS
/
Comment
:
Commentable.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Sabberworm\CSS\Comment; interface Commentable { /** * @param array $aComments Array of comments. */ public function addComments(array $aComments); /** * @return array */ public function getComments(); /** * @param array $aComments Array containing Comment objects. */ public function setComments(array $aComments); }