File tree Expand file tree Collapse file tree 3 files changed +2
-9
lines changed Expand file tree Collapse file tree 3 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ Please also have a look at our
28
28
29
29
### Removed
30
30
31
+ - Remove ` OutputFormat::level() ` (#874 ))
31
32
- Remove expansion of shorthand properties (#838 )
32
33
- Remove ` Parser::setCharset/getCharset ` (#808 )
33
34
- Remove ` Rule::getValues() ` (#582 )
Original file line number Diff line number Diff line change @@ -291,14 +291,6 @@ public function getFormatter()
291
291
return $ this ->oFormatter ;
292
292
}
293
293
294
- /**
295
- * @return int
296
- */
297
- public function level ()
298
- {
299
- return $ this ->iIndentationLevel ;
300
- }
301
-
302
294
/**
303
295
* Creates an instance of this class without any particular formatting settings.
304
296
*/
Original file line number Diff line number Diff line change @@ -208,6 +208,6 @@ private function prepareSpace($sSpaceString): string
208
208
*/
209
209
private function indent (): string
210
210
{
211
- return \str_repeat ($ this ->oFormat ->sIndentation , $ this ->oFormat ->level ());
211
+ return \str_repeat ($ this ->oFormat ->sIndentation , $ this ->oFormat ->getIndentationLevel ());
212
212
}
213
213
}
You can’t perform that action at this time.
0 commit comments