Completed
Push — master ( b09650...6664e8 )
by tac
05:40
created
lib/Attribute/AbstractAttribute.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,9 +34,9 @@
 block discarded – undo
34 34
     }
35 35
 
36 36
     /**
37
-     * @param $object
37
+     * @param \Tacone\Bees\Field\Field $object
38 38
      * @param $storage
39
-     * @param $path
39
+     * @param string $path
40 40
      *
41 41
      * @return static
42 42
      */
Please login to merge, or discard this patch.
lib/Transformator/TypeCaster.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,19 +6,19 @@
 block discarded – undo
6 6
 {
7 7
     public static function toString()
8 8
     {
9
-        return function ($value) {
9
+        return function($value) {
10 10
             return (string) $value;
11 11
         };
12 12
     }
13 13
     public static function toInteger()
14 14
     {
15
-        return function ($value) {
15
+        return function($value) {
16 16
             return (int) $value;
17 17
         };
18 18
     }
19 19
     public static function toFloat()
20 20
     {
21
-        return function ($value) {
21
+        return function($value) {
22 22
             return (float) $value;
23 23
         };
24 24
     }
Please login to merge, or discard this patch.