Skip to content

Commit f3d3df9

Browse files
committed
Cleanup (discovered by testing bleeding edge features of phpstan).
1 parent a88450c commit f3d3df9

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Checker/Catalog/Product/UrlKey.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
use Baldwin\UrlDataIntegrityChecker\Checker\Catalog\Product\UrlKey\DuplicateUrlKey as DuplicateUrlKeyChecker;
88
use Baldwin\UrlDataIntegrityChecker\Checker\Catalog\Product\UrlKey\EmptyUrlKey as EmptyUrlKeyChecker;
9-
use Baldwin\UrlDataIntegrityChecker\Console\Progress;
109

1110
class UrlKey
1211
{
@@ -15,16 +14,13 @@ class UrlKey
1514

1615
private $duplicateUrlKeyChecker;
1716
private $emptyUrlKeyChecker;
18-
private $progress;
1917

2018
public function __construct(
2119
DuplicateUrlKeyChecker $duplicateUrlKeyChecker,
22-
EmptyUrlKeyChecker $emptyUrlKeyChecker,
23-
Progress $progress
20+
EmptyUrlKeyChecker $emptyUrlKeyChecker
2421
) {
2522
$this->duplicateUrlKeyChecker = $duplicateUrlKeyChecker;
2623
$this->emptyUrlKeyChecker = $emptyUrlKeyChecker;
27-
$this->progress = $progress;
2824
}
2925

3026
/**

0 commit comments

Comments
 (0)