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
-use Illuminate\Contracts\Broadcasting\Factory as BroadcastingFactoryContract;
6
-
7
-/**
8
- * @method static void connection($name = null);
9
- * @method static \Illuminate\Broadcasting\Broadcasters\Broadcaster channel(string $channel, callable|string  $callback)
10
- * @method static mixed auth(\Illuminate\Http\Request $request)
11
- *
12
- * @see \Illuminate\Contracts\Broadcasting\Factory
13
- */
14
-class Broadcast 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 BroadcastingFactoryContract::class;
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
+use Illuminate\Contracts\Broadcasting\Factory as BroadcastingFactoryContract;
6
+
7
+/**
8
+ * @method static void connection($name = null);
9
+ * @method static \Illuminate\Broadcasting\Broadcasters\Broadcaster channel(string $channel, callable|string  $callback)
10
+ * @method static mixed auth(\Illuminate\Http\Request $request)
11
+ *
12
+ * @see \Illuminate\Contracts\Broadcasting\Factory
13
+ */
14
+class Broadcast 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 BroadcastingFactoryContract::class;
24
+    }
25
+}