use Illuminate\Support\Facades\Facade as BaseFacade;
8
9
/**
10
* @method static \Ianrizky\MoslemPray\Drivers\MyQuran myquran() Create an instance of the PrayerTimes driver.
11
* @method static \Ianrizky\MoslemPray\Contracts\Response\HasPrayerTime getPrayerTime(mixed $city, \Illuminate\Support\Carbon|string|null $date = null) Return prayer time based on the given city and date.
12
* @method static \Ianrizky\MoslemPray\Contracts\Response\HasPrayerTimeCollection getPrayerTimePerMonth(mixed $city, \Illuminate\Support\Carbon|string|int|null $year = null, int|null $month = null) Return list of prayer time based on the given city and month.
13
*
14
* @see \Ianrizky\MoslemPray\Manager
15
*/
16
class MoslemPray extends BaseFacade
17
{
18
/**
19
* {@inheritDoc}
20
*/
21
protected static function getFacadeAccessor(): string
22
{
23
return Manager::class;
24
}
25
26
/**
27
* {@inheritDoc}
28
*/
29
public static function getFacadeRoot(): Manager
30
{
31
return parent::getFacadeRoot();
32
}
33
34
/**
35
* {@inheritDoc}
36
*/
37
public static function __callStatic($method, $args)