@@ -16,7 +16,7 @@ class Import implements AtRule
1616 /**
1717 * @var URL
1818 */
19- private $ oLocation ;
19+ private $ location ;
2020
2121 /**
2222 * @var string
@@ -37,9 +37,9 @@ class Import implements AtRule
3737 * @param string $mediaQuery
3838 * @param int $lineNumber
3939 */
40- public function __construct (URL $ oLocation , $ mediaQuery , $ lineNumber = 0 )
40+ public function __construct (URL $ location , $ mediaQuery , $ lineNumber = 0 )
4141 {
42- $ this ->oLocation = $ oLocation ;
42+ $ this ->location = $ location ;
4343 $ this ->mediaQuery = $ mediaQuery ;
4444 $ this ->lineNumber = $ lineNumber ;
4545 $ this ->comments = [];
@@ -54,19 +54,19 @@ public function getLineNo()
5454 }
5555
5656 /**
57- * @param URL $oLocation
57+ * @param URL $location
5858 */
59- public function setLocation ($ oLocation ): void
59+ public function setLocation ($ location ): void
6060 {
61- $ this ->oLocation = $ oLocation ;
61+ $ this ->location = $ location ;
6262 }
6363
6464 /**
6565 * @return URL
6666 */
6767 public function getLocation ()
6868 {
69- return $ this ->oLocation ;
69+ return $ this ->location ;
7070 }
7171
7272 public function __toString (): string
@@ -76,7 +76,7 @@ public function __toString(): string
7676
7777 public function render (OutputFormat $ oOutputFormat ): string
7878 {
79- return $ oOutputFormat ->comments ($ this ) . '@import ' . $ this ->oLocation ->render ($ oOutputFormat )
79+ return $ oOutputFormat ->comments ($ this ) . '@import ' . $ this ->location ->render ($ oOutputFormat )
8080 . ($ this ->mediaQuery === null ? '' : ' ' . $ this ->mediaQuery ) . '; ' ;
8181 }
8282
@@ -90,7 +90,7 @@ public function atRuleName(): string
9090 */
9191 public function atRuleArgs (): array
9292 {
93- $ aResult = [$ this ->oLocation ];
93+ $ aResult = [$ this ->location ];
9494 if ($ this ->mediaQuery ) {
9595 \array_push ($ aResult , $ this ->mediaQuery );
9696 }
0 commit comments