Skip to content

Commit b7989b0

Browse files
committed
Avoid redundant default values for properties
1 parent 3e67e25 commit b7989b0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/CSSList/KeyFrame.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ class KeyFrame extends CSSList implements AtRule
1212
/**
1313
* @var string|null
1414
*/
15-
private $vendorKeyFrame = null;
15+
private $vendorKeyFrame;
1616

1717
/**
1818
* @var string|null
1919
*/
20-
private $animationName = null;
20+
private $animationName;
2121

2222
/**
2323
* @param string $vendorKeyFrame

src/OutputFormat.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,12 +217,12 @@ class OutputFormat
217217
/**
218218
* @var OutputFormatter|null
219219
*/
220-
private $oFormatter = null;
220+
private $oFormatter;
221221

222222
/**
223223
* @var OutputFormat|null
224224
*/
225-
private $oNextLevelFormat = null;
225+
private $oNextLevelFormat;
226226

227227
/**
228228
* @var int

src/Rule/Rule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Rule implements Renderable, Commentable
2929
/**
3030
* @var RuleValueList|string|null
3131
*/
32-
private $mValue = null;
32+
private $mValue;
3333

3434
/**
3535
* @var bool

0 commit comments

Comments
 (0)