mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-19 00:01:00 +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;
|
|
}
|
|
}
|