Completed
Push — master ( de6338...1ea5e3 )
by Jose Luis
09:33
created
src/Entries/CreateEntryCommand.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
     /**
24 24
      * CreateEntryCommand constructor.
25 25
      * @param $entity
26
-     * @param array $data
27 26
      */
28 27
     public function __construct($entity, array $input)
29 28
     {
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/Field/Date/DateFieldType.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
     }
120 120
 
121 121
     /**
122
-     * @return mixed
122
+     * @return string
123 123
      */
124 124
     public function presentFront()
125 125
     {
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
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
     }
120 120
 
121 121
     /**
122
-     * @return mixed
122
+     * @return string
123 123
      */
124 124
     public function presentFront()
125 125
     {
Please login to merge, or discard this patch.
src/Http/Controllers/Core/FlowController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 
20 20
     /**
21 21
      * @param Requests\FlowRequest $request
22
-     * @return mixed
22
+     * @return \Illuminate\Http\JsonResponse
23 23
      */
24 24
     public function store(Requests\FlowRequest $request)
25 25
     {
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     /**
32 32
      * @param Requests\FlowRequest $request
33 33
      * @param $id
34
-     * @return mixed
34
+     * @return \Illuminate\Http\JsonResponse
35 35
      */
36 36
     public function update(Requests\FlowRequest $request, $id)
37 37
     {
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     /**
44 44
      * @param $id
45
-     * @return mixed
45
+     * @return \Illuminate\Http\JsonResponse
46 46
      */
47 47
     public function destroy($id)
48 48
     {
Please login to merge, or discard this patch.