|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace TheCaliskan\TDK\Facades; |
|
4
|
|
|
|
|
5
|
|
|
use Illuminate\Support\Facades\Facade; |
|
6
|
|
|
|
|
7
|
|
|
/** |
|
8
|
|
|
* @method static array searchByCurrentTurkishDictionary(string $word) |
|
9
|
|
|
* @method static array searchByWesternOriginDictionary(string $word) |
|
10
|
|
|
* @method static array searchByScanDictionary(string $word) |
|
11
|
|
|
* @method static array searchByCompilationDictionary(string $word) |
|
12
|
|
|
* @method static array searchByProverbDictionary(string $word) |
|
13
|
|
|
* @method static array searchByForeignWordProvisionsGuide(string $word) |
|
14
|
|
|
* @method static array searchByFrequentlyConfusedWordsGuide(string $word) |
|
15
|
|
|
* @method static array searchByCommonMistakesGuide(string $word) |
|
16
|
|
|
* @method static array searchByScienceAndArtTermsDictionary(string $word) |
|
17
|
|
|
* @method static array searchByNursingTermsDictionary(string $word) |
|
18
|
|
|
* @method static array searchByMedicineAndPharmacyTermsDictionary(string $word) |
|
19
|
|
|
* @method static array searchByInternationalMetrologyDictionary(string $word) |
|
20
|
|
|
* @method static array person(string $word, int $by, int $gender) |
|
21
|
|
|
* @method static array personByName(string $word) |
|
22
|
|
|
* @method static array personByWomanName(string $word) |
|
23
|
|
|
* @method static array personByManName(string $word) |
|
24
|
|
|
* @method static array personByMeaning(string $word) |
|
25
|
|
|
* @method static array personByWomanMeaning(string $word) |
|
26
|
|
|
* @method static array personByManMeaning(string $word) |
|
27
|
|
|
* @method static array comparativeDialectsDictionary(string $word, int $dialect = 0) |
|
28
|
|
|
* @method static array comparativeDialectsDictionaryByTurkeyTurkish(string $word) |
|
29
|
|
|
* @method static array comparativeDialectsDictionaryByKazakhTurkish(string $word) |
|
30
|
|
|
* @method static array comparativeDialectsDictionaryByUzbekTurkish(string $word) |
|
31
|
|
|
* @method static array comparativeDialectsDictionaryByAzerbaijaniTurkish(string $word) |
|
32
|
|
|
* @method static array comparativeDialectsDictionaryByUighurTurkish(string $word) |
|
33
|
|
|
* @method static array comparativeDialectsDictionaryByBashkirTurkish(string $word) |
|
34
|
|
|
* @method static array comparativeDialectsDictionaryByTatarTurkish(string $word) |
|
35
|
|
|
* @method static array comparativeDialectsDictionaryByTurkmenTurkish(string $word) |
|
36
|
|
|
* @method static array comparativeDialectsDictionaryByKyrgyzTurkish(string $word) |
|
37
|
|
|
* @method static array comparativeDialectsDictionaryByRussian(string $word) |
|
38
|
|
|
* @method static array suggestions(string $word) |
|
39
|
|
|
* @method static array spelling(string $word) |
|
40
|
|
|
* @method static string sound(string $soundID) |
|
41
|
|
|
* |
|
42
|
|
|
* @see \TheCaliskan\TDK\TDK |
|
43
|
|
|
*/ |
|
44
|
|
|
class TDK extends Facade |
|
45
|
|
|
{ |
|
46
|
|
|
/** |
|
47
|
|
|
* Get the registered name of the component. |
|
48
|
|
|
* |
|
49
|
|
|
* @return string |
|
50
|
|
|
*/ |
|
51
|
|
|
protected static function getFacadeAccessor() |
|
52
|
|
|
{ |
|
53
|
|
|
return 'thecaliskan-tdk'; |
|
54
|
|
|
} |
|
55
|
|
|
} |
|
56
|
|
|
|