File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ private function parseAtRule() {
87
87
$ this ->consume ('@ ' );
88
88
$ sIdentifier = $ this ->parseIdentifier ();
89
89
$ this ->consumeWhiteSpace ();
90
- if ($ this -> streql ( $ sIdentifier, 'import ' ) ) {
90
+ if ($ sIdentifier === 'import ' ) {
91
91
$ oLocation = $ this ->parseURLValue ();
92
92
$ this ->consumeWhiteSpace ();
93
93
$ sMediaQuery = null ;
@@ -96,7 +96,7 @@ private function parseAtRule() {
96
96
}
97
97
$ this ->consume ('; ' );
98
98
return new Import ($ oLocation , $ sMediaQuery );
99
- } else if ($ this -> streql ( $ sIdentifier, 'charset ' ) ) {
99
+ } else if ($ sIdentifier === 'charset ' ) {
100
100
$ sCharset = $ this ->parseStringValue ();
101
101
$ this ->consumeWhiteSpace ();
102
102
$ this ->consume ('; ' );
@@ -110,7 +110,7 @@ private function parseAtRule() {
110
110
$ this ->consumeWhiteSpace ();
111
111
$ this ->parseList ($ oResult );
112
112
return $ oResult ;
113
- } else if ($ this -> streql ( $ sIdentifier, 'namespace ' ) ) {
113
+ } else if ($ sIdentifier === 'namespace ' ) {
114
114
$ sPrefix = null ;
115
115
$ mUrl = $ this ->parsePrimitiveValue ();
116
116
if (!$ this ->comes ('; ' )) {
You can’t perform that action at this time.
0 commit comments