File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -15,31 +15,31 @@ class AtRuleBlockList extends CSSBlockList implements AtRule
15
15
/**
16
16
* @var string
17
17
*/
18
- private $ sType ;
18
+ private $ type ;
19
19
20
20
/**
21
21
* @var string
22
22
*/
23
23
private $ sArgs ;
24
24
25
25
/**
26
- * @param string $sType
27
- * @param string $sArgs
28
- * @param int $iLineNo
26
+ * @param string $type
27
+ * @param string $arguments
28
+ * @param int $lineNumber
29
29
*/
30
- public function __construct ($ sType , $ sArgs = '' , $ iLineNo = 0 )
30
+ public function __construct ($ type , $ arguments = '' , $ lineNumber = 0 )
31
31
{
32
- parent ::__construct ($ iLineNo );
33
- $ this ->sType = $ sType ;
34
- $ this ->sArgs = $ sArgs ;
32
+ parent ::__construct ($ lineNumber );
33
+ $ this ->type = $ type ;
34
+ $ this ->sArgs = $ arguments ;
35
35
}
36
36
37
37
/**
38
38
* @return string
39
39
*/
40
40
public function atRuleName ()
41
41
{
42
- return $ this ->sType ;
42
+ return $ this ->type ;
43
43
}
44
44
45
45
/**
@@ -63,7 +63,7 @@ public function render(OutputFormat $oOutputFormat): string
63
63
if ($ sArgs ) {
64
64
$ sArgs = ' ' . $ sArgs ;
65
65
}
66
- $ sResult .= "@ {$ this ->sType }$ sArgs {$ oOutputFormat ->spaceBeforeOpeningBrace ()}{ " ;
66
+ $ sResult .= "@ {$ this ->type }$ sArgs {$ oOutputFormat ->spaceBeforeOpeningBrace ()}{ " ;
67
67
$ sResult .= $ this ->renderListContents ($ oOutputFormat );
68
68
$ sResult .= '} ' ;
69
69
$ sResult .= $ oOutputFormat ->sAfterAtRuleBlock ;
You can’t perform that action at this time.
0 commit comments