mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
37 lines
1,019 B
PHP
37 lines
1,019 B
PHP
<?php
|
|
|
|
namespace App\Values;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
final class ScanResultCollection extends Collection
|
|
{
|
|
public static function create(): self
|
|
{
|
|
return new self();
|
|
}
|
|
|
|
/** @return Collection|array<array-key, ScanResult> */
|
|
public function valid(): Collection
|
|
{
|
|
return $this->filter(static fn (ScanResult $result): bool => $result->isValid());
|
|
}
|
|
|
|
/** @return Collection|array<array-key, ScanResult> */
|
|
public function success(): Collection
|
|
{
|
|
return $this->filter(static fn (ScanResult $result): bool => $result->isSuccess());
|
|
}
|
|
|
|
/** @return Collection|array<array-key, ScanResult> */
|
|
public function skipped(): Collection
|
|
{
|
|
return $this->filter(static fn (ScanResult $result): bool => $result->isSkipped());
|
|
}
|
|
|
|
/** @return Collection|array<array-key, ScanResult> */
|
|
public function error(): Collection
|
|
{
|
|
return $this->filter(static fn (ScanResult $result): bool => $result->isError());
|
|
}
|
|
}
|