PluginProbe
Yatra – Travel Booking & Tour Operator Software / trunk
Yatra – Travel Booking & Tour Operator Software vtrunk
3.0.14 3.0.14.1 3.0.14.2 3.0.12 3.0.13 3.0.11 3.0.10 3.0.9 3.0.8 3.0.7 3.0.6 3.0.5 3.0.5.1 3.0.4 3.0.3 3.0.2.9 3.0.2.7 3.0.2.8 3.0.2.6 trunk 1.0.0 2.0.0 2.0.1 2.0.10 2.0.11 All 82 releases
yatra / vendor / sabberworm / php-css-parser / src / Comment / Commentable.php

Commentable.php in Yatra – Travel Booking & Tour Operator Software trunk, at vendor/sabberworm/php-css-parser/src/Comment/Commentable.php

26 lines 452 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Sabberworm\CSS\Comment;
4
5 interface Commentable
6 {
7 /**
8 * @param array<array-key, Comment> $aComments
9 *
10 * @return void
11 */
12 public function addComments(array $aComments);
13
14 /**
15 * @return array<array-key, Comment>
16 */
17 public function getComments();
18
19 /**
20 * @param array<array-key, Comment> $aComments
21 *
22 * @return void
23 */
24 public function setComments(array $aComments);
25 }
26