We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6f3868 commit ee5e896Copy full SHA for ee5e896
2 files changed
composer.json
@@ -9,9 +9,9 @@
9
}
10
],
11
"license": "MIT",
12
- "version": "1.0.2",
+ "version": "1.0.3",
13
"require": {
14
- "php": "^7.0|^8.0"
+ "php": "^7.1|^8.0"
15
},
16
"minimum-stability": "stable",
17
"autoload": {
src/LevenshteinDiffCalculator.php
@@ -28,8 +28,8 @@ class LevenshteinDiffCalculator implements StringDiffCalculatorInterface
28
29
public function __construct(
30
string $separatorRegex = self::SPLIT_CHARS_REGEX,
31
- OperationCostCalculator $operationCostCalculator = null,
32
- StringDiffCalculatorInterface $itemDiffCalculator = null
+ ?OperationCostCalculator $operationCostCalculator = null,
+ ?StringDiffCalculatorInterface $itemDiffCalculator = null
33
)
34
{
35
$this->separatorRegex = $separatorRegex;
0 commit comments