Skip to content

Commit 136afcf

Browse files
committed
Minor changes
1 parent 4e3ddcf commit 136afcf

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,15 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16+
1617
- uses: shivammathur/setup-php@v2
1718
with:
1819
coverage: none
1920
php-version: '8.3'
21+
2022
- name: Install dependencies
2123
run: composer update
24+
2225
- run: ./vendor/bin/php-cs-fixer fix --dry-run --diff --show-progress=dots
2326

2427
tests:

src/Behat/Gherkin/Cache/MemoryCache.php

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,8 @@
2020
*/
2121
class MemoryCache implements CacheInterface
2222
{
23-
/**
24-
* @var array<string, FeatureNode>
25-
*/
26-
private array $features = [];
27-
/**
28-
* @var array<string, int>
29-
*/
30-
private array $timestamps = [];
23+
private $features = [];
24+
private $timestamps = [];
3125

3226
/**
3327
* Checks that cache for feature exists and is fresh.

0 commit comments

Comments
 (0)