@@ -16,7 +16,7 @@ class Import implements AtRule
16
16
/**
17
17
* @var URL
18
18
*/
19
- private $ oLocation ;
19
+ private $ location ;
20
20
21
21
/**
22
22
* @var string
@@ -37,9 +37,9 @@ class Import implements AtRule
37
37
* @param string $mediaQuery
38
38
* @param int $lineNumber
39
39
*/
40
- public function __construct (URL $ oLocation , $ mediaQuery , $ lineNumber = 0 )
40
+ public function __construct (URL $ location , $ mediaQuery , $ lineNumber = 0 )
41
41
{
42
- $ this ->oLocation = $ oLocation ;
42
+ $ this ->location = $ location ;
43
43
$ this ->mediaQuery = $ mediaQuery ;
44
44
$ this ->lineNumber = $ lineNumber ;
45
45
$ this ->comments = [];
@@ -54,19 +54,19 @@ public function getLineNo()
54
54
}
55
55
56
56
/**
57
- * @param URL $oLocation
57
+ * @param URL $location
58
58
*/
59
- public function setLocation ($ oLocation ): void
59
+ public function setLocation ($ location ): void
60
60
{
61
- $ this ->oLocation = $ oLocation ;
61
+ $ this ->location = $ location ;
62
62
}
63
63
64
64
/**
65
65
* @return URL
66
66
*/
67
67
public function getLocation ()
68
68
{
69
- return $ this ->oLocation ;
69
+ return $ this ->location ;
70
70
}
71
71
72
72
public function __toString (): string
@@ -76,7 +76,7 @@ public function __toString(): string
76
76
77
77
public function render (OutputFormat $ oOutputFormat ): string
78
78
{
79
- return $ oOutputFormat ->comments ($ this ) . '@import ' . $ this ->oLocation ->render ($ oOutputFormat )
79
+ return $ oOutputFormat ->comments ($ this ) . '@import ' . $ this ->location ->render ($ oOutputFormat )
80
80
. ($ this ->mediaQuery === null ? '' : ' ' . $ this ->mediaQuery ) . '; ' ;
81
81
}
82
82
@@ -90,7 +90,7 @@ public function atRuleName(): string
90
90
*/
91
91
public function atRuleArgs (): array
92
92
{
93
- $ aResult = [$ this ->oLocation ];
93
+ $ aResult = [$ this ->location ];
94
94
if ($ this ->mediaQuery ) {
95
95
\array_push ($ aResult , $ this ->mediaQuery );
96
96
}
0 commit comments