@@ -36,7 +36,7 @@ abstract class CSSList implements Renderable, Commentable
3636 /**
3737 * @var array<array-key, Comment>
3838 */
39- protected $ aComments ;
39+ protected $ comments ;
4040
4141 /**
4242 * @var array<int, RuleSet|CSSList|Import|Charset>
@@ -53,7 +53,7 @@ abstract class CSSList implements Renderable, Commentable
5353 */
5454 public function __construct ($ iLineNo = 0 )
5555 {
56- $ this ->aComments = [];
56+ $ this ->comments = [];
5757 $ this ->aContents = [];
5858 $ this ->iLineNo = $ iLineNo ;
5959 }
@@ -456,26 +456,26 @@ public function getContents()
456456 }
457457
458458 /**
459- * @param array<array-key, Comment> $aComments
459+ * @param array<array-key, Comment> $comments
460460 */
461- public function addComments (array $ aComments ): void
461+ public function addComments (array $ comments ): void
462462 {
463- $ this ->aComments = \array_merge ($ this ->aComments , $ aComments );
463+ $ this ->comments = \array_merge ($ this ->comments , $ comments );
464464 }
465465
466466 /**
467467 * @return array<array-key, Comment>
468468 */
469469 public function getComments ()
470470 {
471- return $ this ->aComments ;
471+ return $ this ->comments ;
472472 }
473473
474474 /**
475- * @param array<array-key, Comment> $aComments
475+ * @param array<array-key, Comment> $comments
476476 */
477- public function setComments (array $ aComments ): void
477+ public function setComments (array $ comments ): void
478478 {
479- $ this ->aComments = $ aComments ;
479+ $ this ->comments = $ comments ;
480480 }
481481}
0 commit comments