Skip to content

Commit 5f192c4

Browse files
Fixes static analysis.
1 parent ea88664 commit 5f192c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Lister/Pipes/LoadAcceleratedFiles.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function __construct(protected Opcache $opcache)
2626
*/
2727
public function handle(Listing $listing, Closure $next): Listing
2828
{
29-
$listing->files = new Collection($this->opcache->getScripts());
29+
$listing->files = new Collection($this->opcache->getScripts()); // @phpstan-ignore-line
3030

3131
if ($listing->files->isEmpty()) {
3232
throw new PreloadException('Opcache has no cached scripts.');

0 commit comments

Comments
 (0)