Completed
Push — master ( e1900c...0f638d )
by Carlos
05:20
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/Data/Point.php 1 patch
Doc Comments   +14 added lines, -14 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
      * @return $this
61 61
      */
62 62
     public function setLatitude($latitude)
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     }
68 68
 
69 69
     /**
70
-     * @return null
70
+     * @return string
71 71
      */
72 72
     public function getLatitude()
73 73
     {
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     }
76 76
 
77 77
     /**
78
-     * @param $longitude
78
+     * @param string $longitude
79 79
      * @return $this
80 80
      */
81 81
     public function setLongitude($longitude)
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     }
87 87
 
88 88
     /**
89
-     * @return null
89
+     * @return string
90 90
      */
91 91
     public function getLongitude()
92 92
     {
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     }
95 95
 
96 96
     /**
97
-     * @param $cityName
97
+     * @param string $cityName
98 98
      * @return $this
99 99
      */
100 100
     public function setCityName($cityName)
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
     }
106 106
 
107 107
     /**
108
-     * @return null
108
+     * @return string
109 109
      */
110 110
     public function getCityName()
111 111
     {
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
-     * @param $color
116
+     * @param string $color
117 117
      * @return $this
118 118
      */
119 119
     public function setColor($color)
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
     }
125 125
 
126 126
     /**
127
-     * @return null
127
+     * @return string
128 128
      */
129 129
     public function getColor()
130 130
     {
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     }
133 133
 
134 134
     /**
135
-     * @param $countryCode
135
+     * @param string $countryCode
136 136
      * @return $this
137 137
      */
138 138
     public function setCountryCode($countryCode)
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     }
144 144
 
145 145
     /**
146
-     * @return null
146
+     * @return string
147 147
      */
148 148
     public function getCountryCode()
149 149
     {
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
     }
152 152
 
153 153
     /**
154
-     * @param $cssClass
154
+     * @param string $cssClass
155 155
      * @return $this
156 156
      */
157 157
     public function setCssClass($cssClass)
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
     }
163 163
 
164 164
     /**
165
-     * @return null
165
+     * @return string
166 166
      */
167 167
     public function getCssClass()
168 168
     {
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     }
171 171
 
172 172
     /**
173
-     * @param $size
173
+     * @param integer $size
174 174
      * @throws Point\SizeOutOfBoundsException
175 175
      * @return $this
176 176
      */
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
     }
188 188
 
189 189
     /**
190
-     * @return null
190
+     * @return integer
191 191
      */
192 192
     public function getSize()
193 193
     {
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.