Skip to content

Commit 55567d2

Browse files
committed
build: drop PHP 7.3 support
1 parent 318fa88 commit 55567d2

File tree

6 files changed

+6
-8
lines changed

6 files changed

+6
-8
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
php-version:
17-
- "7.3"
17+
- "7.4"
1818

1919
steps:
2020
- name: "Checkout"

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@ jobs:
1414
strategy:
1515
matrix:
1616
php-version:
17-
- "7.3"
1817
- "7.4"
1918
- "8.0"
2019
dependencies:
2120
- "highest"
2221
include:
2322
- dependencies: "lowest"
24-
php-version: "7.3"
23+
php-version: "7.4"
2524

2625
steps:
2726
- name: "Checkout"

.github/workflows/static-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
php-version:
17-
- "7.3"
17+
- "7.4"
1818

1919
steps:
2020
- name: "Checkout code"
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
matrix:
4242
php-version:
43-
- "7.3"
43+
- "7.4"
4444

4545
steps:
4646
- name: Checkout code

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
]
1919
},
2020
"require": {
21-
"php": "^7.3 || ^8.0"
21+
"php": "^7.4 || ^8.0"
2222
},
2323
"require-dev": {
2424
"bentools/cartesian-product": "^1.3",

phpcs.xml.dist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
<exclude name="Generic.Formatting.MultipleStatementAlignment"/>
1919
<exclude name="Squiz.Commenting.FunctionComment.SpacingAfterParamType"/>
2020
<exclude name="SlevomatCodingStandard.Functions.StaticClosure"/>
21-
<exclude name="SlevomatCodingStandard.ControlStructures.RequireNullCoalesceEqualOperator.RequiredNullCoalesceEqualOperator"/>
2221
</rule>
2322

2423
<file>src/</file>

src/IterableObject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function __construct(iterable $iterable)
4040
public function filter(?callable $filter = null): self
4141
{
4242
if ($this->iterable instanceof Traversable) {
43-
$filter = $filter ??
43+
$filter ??=
4444
/** @param mixed $value */
4545
static function ($value): bool {
4646
return (bool) $value;

0 commit comments

Comments
 (0)