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,28 +0,0 @@
1
-<?php
2
-
3
-namespace Illuminate\Support\Facades;
4
-
5
-use Illuminate\Contracts\Console\Kernel as ConsoleKernelContract;
6
-
7
-/**
8
- * @method static int handle(\Symfony\Component\Console\Input\InputInterface $input, \Symfony\Component\Console\Output\OutputInterface|null $output = null)
9
- * @method static int call(string $command, array $parameters = [], \Symfony\Component\Console\Output\OutputInterface|null $outputBuffer = null)
10
- * @method static \Illuminate\Foundation\Bus\PendingDispatch queue(string $command, array $parameters = [])
11
- * @method static array all()
12
- * @method static string output()
13
- * @method static void terminate(\Symfony\Component\Console\Input\InputInterface $input, int $status)
14
- *
15
- * @see \Illuminate\Contracts\Console\Kernel
16
- */
17
-class Artisan extends Facade
18
-{
19
-    /**
20
-     * Get the registered name of the component.
21
-     *
22
-     * @return string
23
-     */
24
-    protected static function getFacadeAccessor()
25
-    {
26
-        return ConsoleKernelContract::class;
27
-    }
28
-}
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,28 @@
1
+<?php
2
+
3
+namespace Illuminate\Support\Facades;
4
+
5
+use Illuminate\Contracts\Console\Kernel as ConsoleKernelContract;
6
+
7
+/**
8
+ * @method static int handle(\Symfony\Component\Console\Input\InputInterface $input, \Symfony\Component\Console\Output\OutputInterface|null $output = null)
9
+ * @method static int call(string $command, array $parameters = [], \Symfony\Component\Console\Output\OutputInterface|null $outputBuffer = null)
10
+ * @method static \Illuminate\Foundation\Bus\PendingDispatch queue(string $command, array $parameters = [])
11
+ * @method static array all()
12
+ * @method static string output()
13
+ * @method static void terminate(\Symfony\Component\Console\Input\InputInterface $input, int $status)
14
+ *
15
+ * @see \Illuminate\Contracts\Console\Kernel
16
+ */
17
+class Artisan extends Facade
18
+{
19
+    /**
20
+     * Get the registered name of the component.
21
+     *
22
+     * @return string
23
+     */
24
+    protected static function getFacadeAccessor()
25
+    {
26
+        return ConsoleKernelContract::class;
27
+    }
28
+}