Skip to content

Commit 309c8d8

Browse files
committed
refactor: fix PHPStan issues
1 parent ca2cf5b commit 309c8d8

4 files changed

+20
-4
lines changed

src/Commands/ElasticsearchCreateIndex.php

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ class ElasticsearchCreateIndex extends Command
1414

1515
protected $description = 'Creates index in elasticsearch';
1616

17+
/**
18+
* @return array<string, mixed>
19+
*/
1720
public function getIndexMapping(): array
1821
{
1922
return app()->bound(IndexMappingBuilderInterface::class) ?

src/Commands/ElasticsearchRefreshIndex.php

+11-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@
55
namespace Swis\Laravel\Elasticsearch\Commands;
66

77
use Illuminate\Console\Command;
8-
use Illuminate\Support\Collection;
8+
use Illuminate\Database\Eloquent\Model;
99
use Swis\Laravel\Elasticsearch\Contracts\IndexableInterface;
1010

11+
/**
12+
* @phpstan-type IndexableModel \Illuminate\Database\Eloquent\Model&\Swis\Laravel\Elasticsearch\Contracts\IndexableInterface
13+
*/
1114
class ElasticsearchRefreshIndex extends Command
1215
{
1316
protected $signature = 'elasticsearch:refresh-index';
@@ -19,12 +22,16 @@ public function handle(): int
1922
$this->call(ElasticsearchDeleteIndex::class);
2023
$this->call(ElasticsearchCreateIndex::class);
2124

22-
/** @var class-string<\Illuminate\Database\Eloquent\Model>[] $models */
25+
/** @var class-string<IndexableModel>[] $models */
2326
$models = config('elasticsearch.models');
2427

2528
$models = collect($models)
26-
->filter(fn (string $model) => is_a($model, IndexableInterface::class, true))
27-
->flatMap(fn (string $model): Collection => $model::all())
29+
->filter(fn (string $model): bool => is_a($model, Model::class, true) && is_a($model, IndexableInterface::class, true))
30+
/**
31+
* @param class-string<IndexableModel> $model
32+
* @return array<int, IndexableModel>
33+
*/
34+
->flatMap(fn (string $model): array => $model::all()->all())
2835
->each(fn (IndexableInterface $model) => $model->index());
2936

3037
$this->info(sprintf('Dispatched %d index jobs', $models->count()));

src/Contracts/IndexMappingBuilderInterface.php

+3
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,8 @@
66

77
interface IndexMappingBuilderInterface
88
{
9+
/**
10+
* @return array<string, mixed>
11+
*/
912
public function indexMapping(): array;
1013
}

src/Contracts/SearchResultInterface.php

+3
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,8 @@
66

77
interface SearchResultInterface
88
{
9+
/**
10+
* @param array<string, mixed> $values
11+
*/
912
public static function fromElasticsearchResult(array $values): self;
1013
}

0 commit comments

Comments
 (0)