Skip to content

Commit ab9748e

Browse files
authored
Merge pull request #2 from michieljmmaas/master
Updated nullable parameters in ESLintAction.php
2 parents 716d8c9 + 09f0d50 commit ab9748e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ESLintAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class ESLintAction implements Action {
1313
/** @var Processor */
1414
private $processor;
1515

16-
public function __construct(Processor $processor = null) {
16+
public function __construct(?Processor $processor = null) {
1717
$this->processor = $processor ?? new ProcOpen();
1818
}
1919

0 commit comments

Comments
 (0)