Completed
Push — master ( 0f638d...b58a50 )
by Carlos
02:28
created
src/CarlosIO/Geckoboard/Client.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     }
34 34
 
35 35
     /**
36
-     * @param array|\Guzzle\Common\Collection $config
36
+     * @param \Guzzle\Common\Collection $config
37 37
      * @return Client $this
38 38
      */
39 39
     public function setGuzzleConfig($config)
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * Set Geckoboard API key
56 56
      *
57
-     * @param $apiKey
57
+     * @param string $apiKey
58 58
      * @return $this
59 59
      */
60 60
     public function setApiKey($apiKey)
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     /**
78 78
      * Send the widget info to Geckboard
79 79
      *
80
-     * @param $widget
80
+     * @param \Mockery\MockInterface $widget
81 81
      * @return $this
82 82
      */
83 83
     public function push($widget)
Please login to merge, or discard this patch.
src/CarlosIO/Geckoboard/Tests/Widgets/LeaderBoardTest.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -85,9 +85,9 @@
 block discarded – undo
85 85
     }
86 86
 
87 87
     /**
88
-     * @param $label
89
-     * @param $value
90
-     * @param null $previousRanking
88
+     * @param string $label
89
+     * @param integer $value
90
+     * @param integer $previousRanking
91 91
      */
92 92
     private function addItem($label, $value, $previousRanking = null)
93 93
     {
Please login to merge, or discard this patch.
src/CarlosIO/Geckoboard/Widgets/Bullet.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     }
19 19
 
20 20
     /**
21
-     * @param $orientation
21
+     * @param string $orientation
22 22
      * @return $this
23 23
      */
24 24
     public function setOrientation($orientation)
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     }
38 38
 
39 39
     /**
40
-     * @param $item
40
+     * @param \CarlosIO\Geckoboard\Data\Bullet\Item $item
41 41
      * @return $this
42 42
      */
43 43
     public function setItem($item)
Please login to merge, or discard this patch.
src/CarlosIO/Geckoboard/Widgets/LeaderBoard.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     protected $items = array();
20 20
 
21 21
     /**
22
-     * @param null $order
22
+     * @param integer $order
23 23
      * @return Item[]
24 24
      */
25 25
     public function getItems($order = null)
Please login to merge, or discard this patch.
src/CarlosIO/Geckoboard/Data/Point.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     }
57 57
 
58 58
     /**
59
-     * @param $latitude
59
+     * @param string $latitude
60 60
      *
61 61
      * @return $this
62 62
      */
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     }
76 76
 
77 77
     /**
78
-     * @param $longitude
78
+     * @param string $longitude
79 79
      *
80 80
      * @return $this
81 81
      */
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     }
95 95
 
96 96
     /**
97
-     * @param $cityName
97
+     * @param string $cityName
98 98
      *
99 99
      * @return $this
100 100
      */
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
-     * @param $color
116
+     * @param string $color
117 117
      *
118 118
      * @return $this
119 119
      */
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     }
133 133
 
134 134
     /**
135
-     * @param $countryCode
135
+     * @param string $countryCode
136 136
      *
137 137
      * @return $this
138 138
      */
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
     }
152 152
 
153 153
     /**
154
-     * @param $cssClass
154
+     * @param string $cssClass
155 155
      *
156 156
      * @return $this
157 157
      */
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     }
171 171
 
172 172
     /**
173
-     * @param $size
173
+     * @param integer $size
174 174
      *
175 175
      * @throws Point\SizeOutOfBoundsException
176 176
      *
Please login to merge, or discard this patch.