Test Failed
Push — intl ( 00087a...e65f29 )
by Fabio
05:55
created
framework/Web/UI/WebControls/TTextBox.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
 	/**
126 126
 	 * Returns the value to be validated.
127 127
 	 * This methid is required by \Prado\Web\UI\IValidatable interface.
128
-	 * @return mixed the value of the property to be validated.
128
+	 * @return string the value of the property to be validated.
129 129
 	 */
130 130
 	public function getValidationPropertyValue()
131 131
 	{
Please login to merge, or discard this patch.
framework/Web/UI/WebControls/TWebControl.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 	}
62 62
 
63 63
 	/**
64
-	 * @return whether this web control must have an id
64
+	 * @return boolean this web control must have an id
65 65
 	 */
66 66
 	public function getEnsureId()
67 67
 	{
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
 	}
252 252
 
253 253
 	/**
254
-	 * @return TDisplayStyle display style of the control, default is TDisplayStyle::Fixed
254
+	 * @return string display style of the control, default is TDisplayStyle::Fixed
255 255
 	 */
256 256
 	public function getDisplay()
257 257
 	{
Please login to merge, or discard this patch.
framework/Wsat/TWsatARGenerator.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -205,6 +205,10 @@
 block discarded – undo
205 205
 		return $code;
206 206
 	}
207 207
 
208
+	/**
209
+	 * @param string $classname
210
+	 * @param string $toString
211
+	 */
208 212
 	protected function generateClass($properties, $tablename, $classname, $toString)
209 213
 	{
210 214
 		$props = implode("\n", $properties);
Please login to merge, or discard this patch.
framework/Xml/TXmlDocument.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -235,7 +235,7 @@
 block discarded – undo
235 235
 
236 236
 	/**
237 237
 	 * Recursively converts DOM XML nodes into TXmlElement
238
-	 * @param DOMXmlNode $node the node to be converted
238
+	 * @param \DOMElement $node the node to be converted
239 239
 	 * @return TXmlElement the converted TXmlElement
240 240
 	 */
241 241
 	protected function buildElement($node)
Please login to merge, or discard this patch.
framework/Web/UI/WebControls/TImageButton.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@
 block discarded – undo
243 243
 	 * invoke the page's {@link TPage::validate validate} method first.
244 244
 	 * It will raise {@link onClick OnClick} and {@link onCommand OnCommand} events.
245 245
 	 * This method is mainly used by framework and control developers.
246
-	 * @param TEventParameter $param the event parameter
246
+	 * @param \Prado\Web\UI\ActiveControls\TCallbackEventParameter $param the event parameter
247 247
 	 */
248 248
 	public function raisePostBackEvent($param)
249 249
 	{
Please login to merge, or discard this patch.
framework/Web/UI/WebControls/TLinkButton.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@
 block discarded – undo
243 243
 	 * invoke the page's {@link TPage::validate validate} method first.
244 244
 	 * It will raise {@link onClick OnClick} and {@link onCommand OnCommand} events.
245 245
 	 * This method is mainly used by framework and control developers.
246
-	 * @param TEventParameter $param the event parameter
246
+	 * @param \Prado\Web\UI\ActiveControls\TCallbackEventParameter $param the event parameter
247 247
 	 */
248 248
 	public function raisePostBackEvent($param)
249 249
 	{
Please login to merge, or discard this patch.
framework/Collections/TPriorityMap.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 	 * Initializes the array with an array or an iterable object.
97 97
 	 * @param null|array|Iterator|map|TPriorityMap $data the intial data. Default is null, meaning no initialization.
98 98
 	 * @param bool $readOnly whether the list is read-only
99
-	 * @param numeric $defaultPriority the default priority of items without specified priorities.
99
+	 * @param integer $defaultPriority the default priority of items without specified priorities.
100 100
 	 * @param int $precision the precision of the numeric priorities
101 101
 	 * @throws TInvalidDataTypeException If data is not null and neither an array nor an iterator.
102 102
 	 */
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 
137 137
 	/**
138 138
 	 * This must be called internally or when instantiated.
139
-	 * @param numeric $value sets the default priority of inserted items without a specified priority
139
+	 * @param integer $value sets the default priority of inserted items without a specified priority
140 140
 	 */
141 141
 	protected function setDefaultPriority($value)
142 142
 	{
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 	/**
164 164
 	 * Returns an iterator for traversing the items in the map.
165 165
 	 * This method is required by the interface \IteratorAggregate.
166
-	 * @return Iterator an iterator for traversing the items in the map.
166
+	 * @return \ArrayIterator an iterator for traversing the items in the map.
167 167
 	 */
168 168
 	public function getIterator()
169 169
 	{
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
 	 * @param mixed $value
359 359
 	 * @param null|numeric $priority default: null, filled in with default priority
360 360
 	 * @throws TInvalidOperationException if the map is read-only
361
-	 * @return numeric priority at which the pair was added
361
+	 * @return string priority at which the pair was added
362 362
 	 */
363 363
 	public function add($key, $value, $priority = null)
364 364
 	{
Please login to merge, or discard this patch.
framework/Data/ActiveRecord/Relations/TActiveRecordRelation.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@  discard block
 block discarded – undo
30 30
 	private $_context;
31 31
 	private $_criteria;
32 32
 
33
+	/**
34
+	 * @param \Prado\Data\ActiveRecord\TActiveRecordCriteria $criteria
35
+	 */
33 36
 	public function __construct(TActiveRecordRelationContext $context, $criteria)
34 37
 	{
35 38
 		$this->_context = $context;
@@ -95,7 +98,7 @@  discard block
 block discarded – undo
95 98
 
96 99
 	/**
97 100
 	 * Fetch results for current relationship.
98
-	 * @param mixed $obj
101
+	 * @param TActiveRecord $obj
99 102
 	 * @return bool always true.
100 103
 	 */
101 104
 	public function fetchResultsInto($obj)
@@ -223,6 +226,7 @@  discard block
 block discarded – undo
223 226
 	 * @param array $properties source property names
224 227
 	 * @param array &$fkObjects foreign objects
225 228
 	 * @param array $fields foreign object field names.
229
+	 * @param TActiveRecord[] $fkObjects
226 230
 	 */
227 231
 	protected function populateResult(&$results, $properties, &$fkObjects, $fields)
228 232
 	{
Please login to merge, or discard this patch.
framework/Data/Common/TDbCommandBuilder.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 	}
47 47
 
48 48
 	/**
49
-	 * @param TDbConnection $value database connection.
49
+	 * @param null|TDbConnection $value database connection.
50 50
 	 */
51 51
 	public function setDbConnection($value)
52 52
 	{
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 	 * array('col1' => 'NULL', '*')
195 195
 	 * // SELECT `col1`, `col2`, `col3`, NULL AS `col1` FROM...
196 196
 	 * </code>
197
-	 * @param mixed $data
197
+	 * @param string $data
198 198
 	 * @return array of generated fields - use implode(', ', $selectfieldlist) to collapse field list for usage
199 199
 	 * @since 3.1.7
200 200
 	 * @todo add support for table aliasing
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
 	/**
421 421
 	 * Returns a list of insert field name and a list of binding names.
422 422
 	 * @param object $values array or object to be inserted.
423
-	 * @return array tuple ($fields, $bindings)
423
+	 * @return string[] tuple ($fields, $bindings)
424 424
 	 */
425 425
 	protected function getInsertFieldBindings($values)
426 426
 	{
Please login to merge, or discard this patch.