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,31 +0,0 @@
1
-<?php
2
-
3
-namespace Illuminate\Support\Facades;
4
-
5
-/**
6
- * @method static void emergency(string $message, array $context = [])
7
- * @method static void alert(string $message, array $context = [])
8
- * @method static void critical(string $message, array $context = [])
9
- * @method static void error(string $message, array $context = [])
10
- * @method static void warning(string $message, array $context = [])
11
- * @method static void notice(string $message, array $context = [])
12
- * @method static void info(string $message, array $context = [])
13
- * @method static void debug(string $message, array $context = [])
14
- * @method static void log($level, string $message, array $context = [])
15
- * @method static mixed channel(string $channel = null)
16
- * @method static \Psr\Log\LoggerInterface stack(array $channels, string $channel = null)
17
- *
18
- * @see \Illuminate\Log\Logger
19
- */
20
-class Log extends Facade
21
-{
22
-    /**
23
-     * Get the registered name of the component.
24
-     *
25
-     * @return string
26
-     */
27
-    protected static function getFacadeAccessor()
28
-    {
29
-        return 'log';
30
-    }
31
-}
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,31 @@
1
+<?php
2
+
3
+namespace Illuminate\Support\Facades;
4
+
5
+/**
6
+ * @method static void emergency(string $message, array $context = [])
7
+ * @method static void alert(string $message, array $context = [])
8
+ * @method static void critical(string $message, array $context = [])
9
+ * @method static void error(string $message, array $context = [])
10
+ * @method static void warning(string $message, array $context = [])
11
+ * @method static void notice(string $message, array $context = [])
12
+ * @method static void info(string $message, array $context = [])
13
+ * @method static void debug(string $message, array $context = [])
14
+ * @method static void log($level, string $message, array $context = [])
15
+ * @method static mixed channel(string $channel = null)
16
+ * @method static \Psr\Log\LoggerInterface stack(array $channels, string $channel = null)
17
+ *
18
+ * @see \Illuminate\Log\Logger
19
+ */
20
+class Log extends Facade
21
+{
22
+    /**
23
+     * Get the registered name of the component.
24
+     *
25
+     * @return string
26
+     */
27
+    protected static function getFacadeAccessor()
28
+    {
29
+        return 'log';
30
+    }
31
+}