Skip to content

Commit 4abc3c1

Browse files
authored
Test Improvements (#449)
- Fix tests involving date interval duration involving months - Update PHPStan configuration Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent a742d3b commit 4abc3c1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"orchestra/testbench": "^8.23.1|^9.0|^10.0",
4242
"pestphp/pest": "^2.0",
4343
"pestphp/pest-plugin-laravel": "^2.2",
44-
"phpstan/phpstan": "^1.11",
44+
"phpstan/phpstan": "^1.12.21",
4545
"predis/predis": "^1.0|^2.0"
4646
},
4747
"conflict": {

src/Pulse.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ public function ingest(): int
302302
$ingest = $this->app->make(Ingest::class);
303303

304304
$count = $this->rescue(function () use ($entries, $ingest) {
305-
$ingest->ingest($entries);
305+
$ingest->ingest($entries); // @phpstan-ignore argument.type
306306

307307
return $entries->count();
308308
}) ?? 0;
@@ -433,7 +433,7 @@ public function user(callable $callback): self
433433
throw new RuntimeException('The configured user resolver does not support setting user fields');
434434
}
435435

436-
$resolver->setFieldResolver($callback); // @phpstan-ignore method.nonObject
436+
$resolver->setFieldResolver($callback);
437437

438438
return $this;
439439
}

src/Storage/DatabaseStorage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function store(Collection $items): void
113113

114114
$valueChunks->each(fn ($chunk) => $this->connection()
115115
->table('pulse_values')
116-
->upsert($chunk->all(), ['type', 'key_hash'], ['timestamp', 'value'])
116+
->upsert($chunk->all(), ['type', 'key_hash'], ['timestamp', 'value']) // @phpstan-ignore method.nonObject
117117
);
118118
}, 3);
119119
}

tests/Feature/PulseTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
Config::set('pulse.storage.trim.keep', '30 days');
5353
App::instance(Storage::class, $storage = new StorageFake);
5454

55-
Pulse::record('foo', 'delete', 0, now()->subMonth());
55+
Pulse::record('foo', 'delete', 0, now()->subDays(30));
5656
Pulse::record('foo', 'keep', 0, now()->subWeek());
5757
Pulse::record('foo', 'keep', 0);
5858

0 commit comments

Comments
 (0)