mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
20 lines
277 B
PHP
20 lines
277 B
PHP
|
|
<?php
|
||
|
|
namespace App\Repositories;
|
||
|
|
|
||
|
|
class MeiliSearchRepository extends BaseRepository
|
||
|
|
{
|
||
|
|
private $client;
|
||
|
|
|
||
|
|
public function getCleint()
|
||
|
|
{
|
||
|
|
if (is_null($this->client)) {
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
public function isEnabled(): bool
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
}
|