• File: Commentable.php
  • Full Path: /home/masbinta/public_html/core/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Comment/Commentable.php
  • File size: 358 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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);


}