Test Failed
Push — master ( f85057...b192c0 )
by Dennis
04:02
created
Classes/Domain/Model/Column/Inline.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
     /**
113 113
      * getForeignField
114 114
      *
115
-     * @return mixed
115
+     * @return string
116 116
      */
117 117
     public function getForeignField()
118 118
     {
Please login to merge, or discard this patch.
Classes/Domain/Model/Column/Input.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     }
65 65
 
66 66
     /**
67
-     * @return int
67
+     * @return string
68 68
      */
69 69
     public function getMax()
70 70
     {
Please login to merge, or discard this patch.
Classes/Information.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     public function setDefaultValue($defaultValue);
56 56
 
57 57
     /**
58
-     * @return array
58
+     * @return void
59 59
      */
60 60
     public function getChoices();
61 61
 
Please login to merge, or discard this patch.
Classes/Information/DefaultInformation.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     protected $question = 'Enter a type for %s';
40 40
 
41 41
     /**
42
-     * @return int
42
+     * @return string
43 43
      */
44 44
     public function getDefaultValue()
45 45
     {
Please login to merge, or discard this patch.
Classes/Information/HiddenInformation.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     }
48 48
 
49 49
     /**
50
-     * @return array
50
+     * @return string[]
51 51
      */
52 52
     public function getChoices()
53 53
     {
Please login to merge, or discard this patch.
Classes/Provider.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -10,5 +10,8 @@
 block discarded – undo
10 10
  */
11 11
 interface Provider
12 12
 {
13
+    /**
14
+     * @return string
15
+     */
13 16
     public function generate();
14 17
 }
Please login to merge, or discard this patch.
Classes/Factory/SeederFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     /**
61 61
      * @param $name
62 62
      * @param int $limit
63
-     * @return Seeder\SeedCollection|mixed
63
+     * @return Seeder\SeedCollection
64 64
      */
65 65
     public function make($name, $limit = 1)
66 66
     {
Please login to merge, or discard this patch.
Classes/Seed.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,13 +69,13 @@
 block discarded – undo
69 69
 
70 70
     /**
71 71
      * @param array $properties
72
-     * @return mixed
72
+     * @return void
73 73
      */
74 74
     public function set(array $properties);
75 75
 
76 76
     /**
77 77
      * @param bool $isExecuted
78
-     * @return mixed
78
+     * @return boolean
79 79
      */
80 80
     public function isExecuted($isExecuted);
81 81
 }
Please login to merge, or discard this patch.
Classes/SeederFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,9 +43,9 @@
 block discarded – undo
43 43
     public function create($name, $limit = 1);
44 44
 
45 45
     /**
46
-     * @param $name
46
+     * @param string $name
47 47
      * @param int $limit
48
-     * @return mixed
48
+     * @return SeedCollection
49 49
      */
50 50
     public function make($name, $limit = 1);
51 51
 }
Please login to merge, or discard this patch.