File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 12
12
use Illuminate \Support \Facades \Facade ;
13
13
14
14
/**
15
+ * @method static ?TranslateServiceInterface getTranslateService()
16
+ * @method static ?ProofreadServiceInterface getProofreadService()
17
+ * @method static ?SearchCodeServiceInterface getSearchcodeService()
15
18
* @method static string getJsonNamespace()
16
19
* @method static array<int, string> getLocales()
17
20
* @method static array<int, string> getNamespaces(string $locale)
Original file line number Diff line number Diff line change @@ -27,6 +27,21 @@ public function __construct(
27
27
//
28
28
}
29
29
30
+ public function getTranslateService (): ?TranslateServiceInterface
31
+ {
32
+ return $ this ->translateService ;
33
+ }
34
+
35
+ public function getProofreadService (): ?ProofreadServiceInterface
36
+ {
37
+ return $ this ->proofreadService ;
38
+ }
39
+
40
+ public function getSearchcodeService (): ?SearchCodeServiceInterface
41
+ {
42
+ return $ this ->searchcodeService ;
43
+ }
44
+
30
45
public function getJsonNamespace (): string
31
46
{
32
47
return static ::JSON_NAMESPACE ;
You can’t perform that action at this time.
0 commit comments