Skip to content

Commit e93bac9

Browse files
committed
Apply no_null_property_initialization PHP-CS-Fixer rule
1 parent f4e7d86 commit e93bac9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Completion/CompletionInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ final class CompletionInput extends ArgvInput
3434
private $tokens;
3535
private $currentIndex;
3636
private $completionType;
37-
private $completionName = null;
37+
private $completionName;
3838
private $completionValue = '';
3939

4040
/**

Helper/Helper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
abstract class Helper implements HelperInterface
2323
{
24-
protected $helperSet = null;
24+
protected $helperSet;
2525

2626
/**
2727
* @return void

0 commit comments

Comments
 (0)