Test Setup Failed
Push — fix_683 ( 1369c9 )
by Fabio
08:32
created
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/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/I18N/core/MessageCache.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
 	 * @param string $culture The translation locale, e.g. "en_AU".
110 110
 	 * @param int $lastmodified If the source is a file, this file's modified
111 111
 	 * time is newer than the cache's modified time, no cache hit.
112
-	 * @return mixed bool FALSE if no cache hit. Otherwise, translation
112
+	 * @return false|string bool FALSE if no cache hit. Otherwise, translation
113 113
 	 * table data for the specified section and locale.
114 114
 	 */
115 115
 	public function get($catalogue, $culture, $lastmodified = 0)
Please login to merge, or discard this patch.
framework/Web/Services/TPageService.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
 	 * @param string $pagePath requested page path
471 471
 	 * @throws THttpException if requested page path is invalid
472 472
 	 * @throws TConfigurationException if the page class cannot be found
473
-	 * @return TPage the requested page instance
473
+	 * @return \Prado\TComponent the requested page instance
474 474
 	 */
475 475
 	protected function createPage($pagePath)
476 476
 	{
@@ -517,7 +517,7 @@  discard block
 block discarded – undo
517 517
 
518 518
 	/**
519 519
 	 * Executes a page.
520
-	 * @param TPage $page the page instance to be run
520
+	 * @param \Prado\TComponent $page the page instance to be run
521 521
 	 * @param array $properties list of initial page properties
522 522
 	 */
523 523
 	protected function runPage($page, $properties)
Please login to merge, or discard this patch.