Completed
Push — master ( ab40eb...8c0a12 )
by Michael
06:51 queued 03:31
created
src/ServiceProviders/CommandsServiceProvider.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@  discard block
 block discarded – undo
20 20
  */
21 21
 class CommandsServiceProvider
22 22
 {
23
+    /**
24
+     * @param \Closure $value
25
+     */
23 26
     protected function registerCommand(Container $container, $class, $value)
24 27
     {
25 28
         $container->set($class, $value);
@@ -27,6 +30,9 @@  discard block
 block discarded – undo
27 30
         return ['name' => $class::$name, 'class' => $class];
28 31
     }
29 32
 
33
+    /**
34
+     * @param Container $container
35
+     */
30 36
     protected function registerCommands($container)
31 37
     {
32 38
         $commands = [];
Please login to merge, or discard this patch.