5
5
namespace Swis \Laravel \Elasticsearch \Commands ;
6
6
7
7
use Illuminate \Console \Command ;
8
- use Illuminate \Support \ Collection ;
8
+ use Illuminate \Database \ Eloquent \ Model ;
9
9
use Swis \Laravel \Elasticsearch \Contracts \IndexableInterface ;
10
10
11
+ /**
12
+ * @phpstan-type IndexableModel \Illuminate\Database\Eloquent\Model&\Swis\Laravel\Elasticsearch\Contracts\IndexableInterface
13
+ */
11
14
class ElasticsearchRefreshIndex extends Command
12
15
{
13
16
protected $ signature = 'elasticsearch:refresh-index ' ;
@@ -19,12 +22,16 @@ public function handle(): int
19
22
$ this ->call (ElasticsearchDeleteIndex::class);
20
23
$ this ->call (ElasticsearchCreateIndex::class);
21
24
22
- /** @var class-string<\Illuminate\Database\Eloquent\Model >[] $models */
25
+ /** @var class-string<IndexableModel >[] $models */
23
26
$ models = config ('elasticsearch.models ' );
24
27
25
28
$ 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 ())
28
35
->each (fn (IndexableInterface $ model ) => $ model ->index ());
29
36
30
37
$ this ->info (sprintf ('Dispatched %d index jobs ' , $ models ->count ()));
0 commit comments