Completed
Push — master ( efc908...2ccc8e )
by Jose Luis
03:00
created
src/EntityGenerator/Listeners/CreateTableInDatabase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      * If the entity is supposed to create a
18 18
      * table in the Database, it will do
19 19
      * It won't do anything otherwise
20
-     * @param  Events  $event
20
+     * @param  EntityWasCreated  $event
21 21
      * @return void
22 22
      */
23 23
     public function handle(EntityWasCreated $event)
Please login to merge, or discard this patch.
src/Entries/UpdateEntryCommand.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,6 @@
 block discarded – undo
28 28
     /**
29 29
      * CreateEntryCommand constructor.
30 30
      * @param $entity
31
-     * @param array $data
32 31
      */
33 32
     public function __construct($entity, $entry_id, array $input)
34 33
     {
Please login to merge, or discard this patch.
src/FieldGenerator/Handler/CreateFieldCommandHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * Handle the creation of the Field in the Database
17 17
      * @param $command
18
-     * @return static
18
+     * @return FieldModel
19 19
      */
20 20
     public function handle($command)
21 21
     {
Please login to merge, or discard this patch.
src/FieldGenerator/Listeners/RenameColumn.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     /**
11 11
      * Once the field has been edited in the DB Record
12 12
      * The column in the entity table will be edited.
13
-     * @param FieldWasCreated $event
13
+     * @param FieldWasEdited $event
14 14
      */
15 15
     public function handle(FieldWasEdited $event)
16 16
     {
Please login to merge, or discard this patch.
src/Http/Controllers/Core/FieldsController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Hechoenlaravel\JarvisFoundation\Http\Controllers\Core;
4 4
 
5 5
 use Illuminate\Http\Request;
6
-use Hechoenlaravel\JarvisFoundation\Http\Requests;
7 6
 use Hechoenlaravel\JarvisFoundation\Http\Controllers\Controller;
8 7
 use Joselfonseca\LaravelApiTools\Traits\ResponderTrait;
9 8
 use Hechoenlaravel\JarvisFoundation\Traits\EntityManager;
Please login to merge, or discard this patch.
src/Http/Controllers/Core/TransitionController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Hechoenlaravel\JarvisFoundation\Http\Controllers\Core;
4 4
 
5 5
 use Hechoenlaravel\JarvisFoundation\Flows\Transition;
6
-use Illuminate\Http\Request;
7 6
 use Hechoenlaravel\JarvisFoundation\Flows\Flow;
8 7
 use Hechoenlaravel\JarvisFoundation\Flows\Step;
9 8
 use Hechoenlaravel\JarvisFoundation\Http\Requests;
Please login to merge, or discard this patch.
src/Entries/CreateEntryCommand.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,6 @@
 block discarded – undo
28 28
     /**
29 29
      * CreateEntryCommand constructor.
30 30
      * @param $entity
31
-     * @param array $data
32 31
      */
33 32
     public function __construct($entity, $entry_id, array $input)
34 33
     {
Please login to merge, or discard this patch.
src/Field/Text/TextFieldType.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
     }
118 118
 
119 119
     /**
120
-     * @return mixed
120
+     * @return string
121 121
      */
122 122
     public function presentFront()
123 123
     {
Please login to merge, or discard this patch.
src/Http/Controllers/Core/FlowController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Hechoenlaravel\JarvisFoundation\Http\Controllers\Core;
4 4
 
5 5
 use Hechoenlaravel\JarvisFoundation\Flows\Transition;
6
-use Illuminate\Http\Request;
7 6
 use Hechoenlaravel\JarvisFoundation\Flows\Flow;
8 7
 use Hechoenlaravel\JarvisFoundation\Flows\Step;
9 8
 use Hechoenlaravel\JarvisFoundation\Http\Requests;
Please login to merge, or discard this patch.