Your IP : 192.168.165.1


Current Path : C:/Users/Mahmood/Desktop/moodle8/lib/php-css-parser/Comment/
Upload File :
Current File : C:/Users/Mahmood/Desktop/moodle8/lib/php-css-parser/Comment/Commentable.php

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


}