@@ -20,7 +20,7 @@ class CSSNamespace implements AtRule
2020 /**
2121 * @var string
2222 */
23- private $ sPrefix ;
23+ private $ prefix ;
2424
2525 /**
2626 * @var int
@@ -36,13 +36,13 @@ class CSSNamespace implements AtRule
3636
3737 /**
3838 * @param string $mUrl
39- * @param string|null $sPrefix
39+ * @param string|null $prefix
4040 * @param int<0, max> $lineNumber
4141 */
42- public function __construct ($ mUrl , $ sPrefix = null , $ lineNumber = 0 )
42+ public function __construct ($ mUrl , $ prefix = null , $ lineNumber = 0 )
4343 {
4444 $ this ->mUrl = $ mUrl ;
45- $ this ->sPrefix = $ sPrefix ;
45+ $ this ->prefix = $ prefix ;
4646 $ this ->lineNumber = $ lineNumber ;
4747 $ this ->comments = [];
4848 }
@@ -62,7 +62,7 @@ public function __toString(): string
6262
6363 public function render (OutputFormat $ outputFormat ): string
6464 {
65- return '@namespace ' . ($ this ->sPrefix === null ? '' : $ this ->sPrefix . ' ' )
65+ return '@namespace ' . ($ this ->prefix === null ? '' : $ this ->prefix . ' ' )
6666 . $ this ->mUrl ->render ($ outputFormat ) . '; ' ;
6767 }
6868
@@ -79,7 +79,7 @@ public function getUrl()
7979 */
8080 public function getPrefix ()
8181 {
82- return $ this ->sPrefix ;
82+ return $ this ->prefix ;
8383 }
8484
8585 /**
@@ -91,11 +91,11 @@ public function setUrl($mUrl): void
9191 }
9292
9393 /**
94- * @param string $sPrefix
94+ * @param string $prefix
9595 */
96- public function setPrefix ($ sPrefix ): void
96+ public function setPrefix ($ prefix ): void
9797 {
98- $ this ->sPrefix = $ sPrefix ;
98+ $ this ->prefix = $ prefix ;
9999 }
100100
101101 /**
@@ -112,8 +112,8 @@ public function atRuleName(): string
112112 public function atRuleArgs (): array
113113 {
114114 $ result = [$ this ->mUrl ];
115- if ($ this ->sPrefix ) {
116- \array_unshift ($ result , $ this ->sPrefix );
115+ if ($ this ->prefix ) {
116+ \array_unshift ($ result , $ this ->prefix );
117117 }
118118 return $ result ;
119119 }
0 commit comments