Completed
Push — master ( 629bbc...c643b5 )
by Song
04:48
created
src/Widgets/Box.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@  discard block
 block discarded – undo
26 26
         }
27 27
     }
28 28
 
29
+    /**
30
+     * @param string $content
31
+     */
29 32
     public function content($content)
30 33
     {
31 34
         if ($content instanceof Renderable) {
@@ -37,6 +40,9 @@  discard block
 block discarded – undo
37 40
         return $this;
38 41
     }
39 42
 
43
+    /**
44
+     * @param string $title
45
+     */
40 46
     public function title($title)
41 47
     {
42 48
         $this->attributes['title'] = $title;
Please login to merge, or discard this patch.
src/Widgets/Chart/Pie.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -55,6 +55,9 @@
 block discarded – undo
55 55
         return $data;
56 56
     }
57 57
 
58
+    /**
59
+     * @return string
60
+     */
58 61
     public function script()
59 62
     {
60 63
         $this->data = $this->fillColor($this->data);
Please login to merge, or discard this patch.
src/Widgets/Form.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
      * Find field class with given name.
118 118
      *
119 119
      * @param string $method
120
-     * @return bool|string
120
+     * @return string|false
121 121
      */
122 122
     public static function findFieldClass($method)
123 123
     {
Please login to merge, or discard this patch.