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,58 +0,0 @@
1
-<?php
2
-
3
-namespace Illuminate\Support\Facades;
4
-
5
-/**
6
- * @method static string version()
7
- * @method static string basePath()
8
- * @method static string bootstrapPath(string $path = '')
9
- * @method static string configPath(string $path = '')
10
- * @method static string databasePath(string $path = '')
11
- * @method static string environmentPath()
12
- * @method static string resourcePath(string $path = '')
13
- * @method static string storagePath(string $path = '')
14
- * @method static string|bool environment(string|array ...$environments)
15
- * @method static bool runningInConsole()
16
- * @method static bool runningUnitTests()
17
- * @method static bool isDownForMaintenance()
18
- * @method static void registerConfiguredProviders()
19
- * @method static \Illuminate\Support\ServiceProvider register(\Illuminate\Support\ServiceProvider|string $provider, bool $force = false)
20
- * @method static void registerDeferredProvider(string $provider, string $service = null)
21
- * @method static \Illuminate\Support\ServiceProvider resolveProvider(string $provider)
22
- * @method static void boot()
23
- * @method static void booting(callable $callback)
24
- * @method static void booted(callable $callback)
25
- * @method static void bootstrapWith(array $bootstrappers)
26
- * @method static bool configurationIsCached()
27
- * @method static string detectEnvironment(callable $callback)
28
- * @method static string environmentFile()
29
- * @method static string environmentFilePath()
30
- * @method static string getCachedConfigPath()
31
- * @method static string getCachedServicesPath()
32
- * @method static string getCachedPackagesPath()
33
- * @method static string getCachedRoutesPath()
34
- * @method static string getLocale()
35
- * @method static string getNamespace()
36
- * @method static array getProviders(\Illuminate\Support\ServiceProvider|string $provider)
37
- * @method static bool hasBeenBootstrapped()
38
- * @method static void loadDeferredProviders()
39
- * @method static \Illuminate\Contracts\Foundation\Application loadEnvironmentFrom(string $file)
40
- * @method static bool routesAreCached()
41
- * @method static void setLocale(string $locale)
42
- * @method static bool shouldSkipMiddleware()
43
- * @method static void terminate()
44
- *
45
- * @see \Illuminate\Contracts\Foundation\Application
46
- */
47
-class App extends Facade
48
-{
49
-    /**
50
-     * Get the registered name of the component.
51
-     *
52
-     * @return string
53
-     */
54
-    protected static function getFacadeAccessor()
55
-    {
56
-        return 'app';
57
-    }
58
-}
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,58 @@
1
+<?php
2
+
3
+namespace Illuminate\Support\Facades;
4
+
5
+/**
6
+ * @method static string version()
7
+ * @method static string basePath()
8
+ * @method static string bootstrapPath(string $path = '')
9
+ * @method static string configPath(string $path = '')
10
+ * @method static string databasePath(string $path = '')
11
+ * @method static string environmentPath()
12
+ * @method static string resourcePath(string $path = '')
13
+ * @method static string storagePath(string $path = '')
14
+ * @method static string|bool environment(string|array ...$environments)
15
+ * @method static bool runningInConsole()
16
+ * @method static bool runningUnitTests()
17
+ * @method static bool isDownForMaintenance()
18
+ * @method static void registerConfiguredProviders()
19
+ * @method static \Illuminate\Support\ServiceProvider register(\Illuminate\Support\ServiceProvider|string $provider, bool $force = false)
20
+ * @method static void registerDeferredProvider(string $provider, string $service = null)
21
+ * @method static \Illuminate\Support\ServiceProvider resolveProvider(string $provider)
22
+ * @method static void boot()
23
+ * @method static void booting(callable $callback)
24
+ * @method static void booted(callable $callback)
25
+ * @method static void bootstrapWith(array $bootstrappers)
26
+ * @method static bool configurationIsCached()
27
+ * @method static string detectEnvironment(callable $callback)
28
+ * @method static string environmentFile()
29
+ * @method static string environmentFilePath()
30
+ * @method static string getCachedConfigPath()
31
+ * @method static string getCachedServicesPath()
32
+ * @method static string getCachedPackagesPath()
33
+ * @method static string getCachedRoutesPath()
34
+ * @method static string getLocale()
35
+ * @method static string getNamespace()
36
+ * @method static array getProviders(\Illuminate\Support\ServiceProvider|string $provider)
37
+ * @method static bool hasBeenBootstrapped()
38
+ * @method static void loadDeferredProviders()
39
+ * @method static \Illuminate\Contracts\Foundation\Application loadEnvironmentFrom(string $file)
40
+ * @method static bool routesAreCached()
41
+ * @method static void setLocale(string $locale)
42
+ * @method static bool shouldSkipMiddleware()
43
+ * @method static void terminate()
44
+ *
45
+ * @see \Illuminate\Contracts\Foundation\Application
46
+ */
47
+class App extends Facade
48
+{
49
+    /**
50
+     * Get the registered name of the component.
51
+     *
52
+     * @return string
53
+     */
54
+    protected static function getFacadeAccessor()
55
+    {
56
+        return 'app';
57
+    }
58
+}