Completed
Branch master (2c8377)
by recca
07:32
created
src/Console/Commands/Artisan.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
      *
75 75
      * @param string $command
76 76
      *
77
-     * @return bool
77
+     * @return string
78 78
      */
79 79
     protected function forceCommand($command)
80 80
     {
Please login to merge, or discard this patch.
src/Console/Commands/Find.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      * @param \Symfony\Component\Console\Input\InputInterface   $input
62 62
      * @param \Symfony\Component\Console\Output\OutputInterface $output
63 63
      *
64
-     * @return \Symfony\Component\Console\Input\StringInput
64
+     * @return integer
65 65
      */
66 66
     public function run(InputInterface $input, OutputInterface $output)
67 67
     {
Please login to merge, or discard this patch.
src/Http/Controllers/TerminalController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      * @param \Recca0120\Terminal\TerminalManager   $terminalManger
28 28
      * @param string                                $view
29 29
      *
30
-     * @return mixed
30
+     * @return \Illuminate\Http\Response
31 31
      */
32 32
     public function index(TerminalManager $terminalManger, $view = 'index')
33 33
     {
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      *
52 52
      * @param \Recca0120\Terminal\TerminalManager   $terminalManger
53 53
      *
54
-     * @return mixed
54
+     * @return \Illuminate\Http\JsonResponse
55 55
      */
56 56
     public function endpoint(TerminalManager $terminalManger)
57 57
     {
Please login to merge, or discard this patch.
src/TerminalManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     /**
25 25
      * __construct.
26 26
      *
27
-     * @param Recca0120\Terminal\Kernel $kernel [description]
27
+     * @param Kernel $kernel [description]
28 28
      * @param array $config
29 29
      */
30 30
     public function __construct(Kernel $kernel, $config = [])
Please login to merge, or discard this patch.
src/TerminalServiceProvider.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     /**
20 20
      * Bootstrap any application services.
21 21
      *
22
-     * @param \Illuminate\Http\Request   $Request
22
+     * @param \Illuminate\Http\Request   $request
23 23
      * @param \Illuminate\Routing\Router $router
24 24
      */
25 25
     public function boot(Request $request, Router $router)
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     /**
69 69
      * register routes.
70 70
      *
71
-     * @param Illuminate\Routing\Router $router
71
+     * @param Router $router
72 72
      * @param array                     $config
73 73
      */
74 74
     protected function handleRoutes(Router $router, $config = [])
Please login to merge, or discard this patch.