Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

Application modulaire fonctionnelle !

Emmanuel ROY authored on 12/08/2019 15:10:25
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,25 +0,0 @@
1
-<?php
2
-
3
-namespace Illuminate\Support\Facades;
4
-
5
-/**
6
- * @method static mixed trans(string $key, array $replace = [], string $locale = null)
7
- * @method static string transChoice(string $key, int|array|\Countable $number, array $replace = [], string $locale = null)
8
- * @method static string getLocale()
9
- * @method static void setLocale(string $locale)
10
- * @method static string|array|null get(string $key, array $replace = [], string $locale = null, bool $fallback = true)
11
- *
12
- * @see \Illuminate\Translation\Translator
13
- */
14
-class Lang extends Facade
15
-{
16
-    /**
17
-     * Get the registered name of the component.
18
-     *
19
-     * @return string
20
-     */
21
-    protected static function getFacadeAccessor()
22
-    {
23
-        return 'translator';
24
-    }
25
-}
Browse code

initial commit

Emmanuel ROY authored on 09/08/2019 08:39:02
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,25 @@
1
+<?php
2
+
3
+namespace Illuminate\Support\Facades;
4
+
5
+/**
6
+ * @method static mixed trans(string $key, array $replace = [], string $locale = null)
7
+ * @method static string transChoice(string $key, int|array|\Countable $number, array $replace = [], string $locale = null)
8
+ * @method static string getLocale()
9
+ * @method static void setLocale(string $locale)
10
+ * @method static string|array|null get(string $key, array $replace = [], string $locale = null, bool $fallback = true)
11
+ *
12
+ * @see \Illuminate\Translation\Translator
13
+ */
14
+class Lang extends Facade
15
+{
16
+    /**
17
+     * Get the registered name of the component.
18
+     *
19
+     * @return string
20
+     */
21
+    protected static function getFacadeAccessor()
22
+    {
23
+        return 'translator';
24
+    }
25
+}