File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -162,15 +162,15 @@ private static function parseAtRule(ParserState $parserState)
162162 if ($ sIdentifier === 'import ' ) {
163163 $ oLocation = URL ::parse ($ parserState );
164164 $ parserState ->consumeWhiteSpace ();
165- $ sMediaQuery = null ;
165+ $ mediaQuery = null ;
166166 if (!$ parserState ->comes ('; ' )) {
167- $ sMediaQuery = \trim ($ parserState ->consumeUntil (['; ' , ParserState::EOF ]));
168- if ($ sMediaQuery === '' ) {
169- $ sMediaQuery = null ;
167+ $ mediaQuery = \trim ($ parserState ->consumeUntil (['; ' , ParserState::EOF ]));
168+ if ($ mediaQuery === '' ) {
169+ $ mediaQuery = null ;
170170 }
171171 }
172172 $ parserState ->consumeUntil (['; ' , ParserState::EOF ], true , true );
173- return new Import ($ oLocation , $ sMediaQuery , $ iIdentifierLineNum );
173+ return new Import ($ oLocation , $ mediaQuery , $ iIdentifierLineNum );
174174 } elseif ($ sIdentifier === 'charset ' ) {
175175 $ oCharsetString = CSSString::parse ($ parserState );
176176 $ parserState ->consumeWhiteSpace ();
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class Import implements AtRule
2121 /**
2222 * @var string
2323 */
24- private $ sMediaQuery ;
24+ private $ mediaQuery ;
2525
2626 /**
2727 * @var int
@@ -34,13 +34,13 @@ class Import implements AtRule
3434 protected $ comments ;
3535
3636 /**
37- * @param string $sMediaQuery
37+ * @param string $mediaQuery
3838 * @param int $lineNumber
3939 */
40- public function __construct (URL $ oLocation , $ sMediaQuery , $ lineNumber = 0 )
40+ public function __construct (URL $ oLocation , $ mediaQuery , $ lineNumber = 0 )
4141 {
4242 $ this ->oLocation = $ oLocation ;
43- $ this ->sMediaQuery = $ sMediaQuery ;
43+ $ this ->sMediaQuery = $ mediaQuery ;
4444 $ this ->lineNumber = $ lineNumber ;
4545 $ this ->comments = [];
4646 }
You can’t perform that action at this time.
0 commit comments