Completed
Push — 3.2 ( 572945...c3544f )
by Loz
15:22
created
core/manifest/ConfigStaticManifest.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -296,6 +296,7 @@
 block discarded – undo
296 296
 	 *
297 297
 	 * Seperated out from parse partially so that we can recurse if there are multiple statics
298 298
 	 * being declared in a comma seperated list
299
+	 * @param string $class
299 300
 	 */
300 301
 	function parseStatic($access, $class) {
301 302
 		$variable = null;
Please login to merge, or discard this patch.
dev/Debug.php 1 patch
Doc Comments   +14 added lines, -7 removed lines patch added patch discarded remove patch
@@ -214,6 +214,12 @@  discard block
 block discarded – undo
214 214
 		set_exception_handler('exceptionHandler');
215 215
 	}
216 216
 
217
+	/**
218
+	 * @param integer $errno
219
+	 * @param string $errstr
220
+	 * @param string $errfile
221
+	 * @param integer $errline
222
+	 */
217 223
 	public static function noticeHandler($errno, $errstr, $errfile, $errline, $errcontext) {
218 224
 		if(error_reporting() == 0) return;
219 225
 		ini_set('display_errors', 0);
@@ -240,10 +246,10 @@  discard block
 block discarded – undo
240 246
 	/**
241 247
 	 * Handle a non-fatal warning error thrown by PHP interpreter.
242 248
 	 *
243
-	 * @param unknown_type $errno
244
-	 * @param unknown_type $errstr
245
-	 * @param unknown_type $errfile
246
-	 * @param unknown_type $errline
249
+	 * @param integer $errno
250
+	 * @param string $errstr
251
+	 * @param string $errfile
252
+	 * @param integer $errline
247 253
 	 * @param unknown_type $errcontext
248 254
 	 */
249 255
 	public static function warningHandler($errno, $errstr, $errfile, $errline, $errcontext) {
@@ -274,8 +280,8 @@  discard block
 block discarded – undo
274 280
 	 *
275 281
 	 * Runtime execution dies immediately once the error is generated.
276 282
 	 *
277
-	 * @param unknown_type $errno
278
-	 * @param unknown_type $errstr
283
+	 * @param integer $errno
284
+	 * @param string $errstr
279 285
 	 * @param unknown_type $errfile
280 286
 	 * @param unknown_type $errline
281 287
 	 * @param unknown_type $errcontext
@@ -315,7 +321,7 @@  discard block
 block discarded – undo
315 321
 	 *                                     or "tech-speak". Used in the HTTP Header and ajax responses.
316 322
 	 * @param string $friendlyErrorDetail Detailed user-focused message. Is just used if no {@link ErrorPage} is found
317 323
 	 *                                    for this specific status code.
318
-	 * @return string HTML error message for non-ajax requests, plaintext for ajax-request.
324
+	 * @return boolean HTML error message for non-ajax requests, plaintext for ajax-request.
319 325
 	 */
320 326
 	public static function friendlyError($statusCode=500, $friendlyErrorMessage=null, $friendlyErrorDetail=null) {
321 327
 		if(!$friendlyErrorMessage) {
@@ -388,6 +394,7 @@  discard block
 block discarded – undo
388 394
 	 * @param unknown_type $errfile
389 395
 	 * @param unknown_type $errline
390 396
 	 * @param unknown_type $errcontext
397
+	 * @param string $errtype
391 398
 	 */
392 399
 	public static function showError($errno, $errstr, $errfile, $errline, $errcontext, $errtype) {
393 400
 		if(!headers_sent()) {
Please login to merge, or discard this patch.
dev/Deprecation.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 	 * greater than or equal to this version, a message will be raised
73 73
 	 *
74 74
 	 * @static
75
-	 * @param $ver string -
75
+	 * @param string|null $ver string -
76 76
 	 *     A php standard version string, see http://php.net/manual/en/function.version-compare.php for details.
77 77
 	 * @param null $forModule string -
78 78
 	 *    The name of a module. The passed version will be used as the check value for
Please login to merge, or discard this patch.
filesystem/File.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 	 * Find a File object by the given filename.
235 235
 	 *
236 236
 	 * @param String $filename Matched against the "Name" property.
237
-	 * @return mixed null if not found, File object of found file
237
+	 * @return null|DataObject null if not found, File object of found file
238 238
 	 */
239 239
 	public static function find($filename) {
240 240
 		// Get the base file if $filename points to a resampled file
@@ -449,6 +449,7 @@  discard block
 block discarded – undo
449 449
 	 * showing icons on filelinks, etc.
450 450
 	 * Possible group values are: "audio", "mov", "zip", "image".
451 451
 	 *
452
+	 * @param string $ext
452 453
 	 * @return String
453 454
 	 */
454 455
 	public static function get_app_category($ext) {
@@ -872,7 +873,6 @@  discard block
 block discarded – undo
872 873
 	/**
873 874
 	 * Convert a php.ini value (eg: 512M) to bytes
874 875
 	 *
875
-	 * @param string $phpIniValue
876 876
 	 * @return int
877 877
 	 */
878 878
 	public static function ini2bytes($PHPiniValue) {
Please login to merge, or discard this patch.
filesystem/GD.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -150,6 +150,7 @@  discard block
 block discarded – undo
150 150
 	 * successfully, the manipulation's cache key is removed.
151 151
 	 *
152 152
 	 * @param string $filename
153
+	 * @param string $manipulation
153 154
 	 * @return boolean
154 155
 	 */
155 156
 	public function failedResample($filename, $manipulation) {
@@ -417,6 +418,10 @@  discard block
 block discarded – undo
417 418
 			return $useAsMinimum ? $this->resizeByWidth( $maxWidth ) : $this->resizeByHeight( $maxHeight );
418 419
 	}
419 420
 
421
+	/**
422
+	 * @param resource $image
423
+	 * @param string $webColor
424
+	 */
420 425
 	public static function color_web2gd($image, $webColor) {
421 426
 		if(substr($webColor,0,1) == "#") $webColor = substr($webColor,1);
422 427
 		$r = hexdec(substr($webColor,0,2));
@@ -521,6 +526,9 @@  discard block
 block discarded – undo
521 526
 		return $output;
522 527
 	}
523 528
 
529
+	/**
530
+	 * @param string $dirname
531
+	 */
524 532
 	public function makeDir($dirname) {
525 533
 		if(!file_exists(dirname($dirname))) $this->makeDir(dirname($dirname));
526 534
 		if(!file_exists($dirname)) mkdir($dirname, Config::inst()->get('Filesystem', 'folder_create_mask'));
Please login to merge, or discard this patch.
filesystem/ImagickBackend.php 1 patch
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 	 *
81 81
 	 * Get the backend-specific resource handling the manipulations. Replaces Image::getGD()
82 82
 	 *
83
-	 * @return mixed
83
+	 * @return ImagickBackend
84 84
 	 */
85 85
 	public function getImageResource() {
86 86
 		return $this;
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 	 *
112 112
 	 * @param int $width
113 113
 	 * @param int $height
114
-	 * @return Image_Backend
114
+	 * @return null|ImagickBackend
115 115
 	 */
116 116
 	public function resize($width, $height) {
117 117
 		if(!$this->valid()) return;
@@ -141,9 +141,9 @@  discard block
 block discarded – undo
141 141
 	/**
142 142
 	 * resizeRatio
143 143
 	 *
144
-	 * @param int $width
145
-	 * @param int $height
146
-	 * @return Image_Backend
144
+	 * @param integer $maxWidth
145
+	 * @param integer $maxHeight
146
+	 * @return null|ImagickBackend
147 147
 	 */
148 148
 	public function resizeRatio($maxWidth, $maxHeight, $useAsMinimum = false) {
149 149
 		if(!$this->valid()) return;
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 	 * resizeByWidth
164 164
 	 *
165 165
 	 * @param int $width
166
-	 * @return Image_Backend
166
+	 * @return null|ImagickBackend
167 167
 	 */
168 168
 	public function resizeByWidth($width) {
169 169
 		if(!$this->valid()) return;
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 	 * resizeByHeight
179 179
 	 *
180 180
 	 * @param int $height
181
-	 * @return Image_Backend
181
+	 * @return null|ImagickBackend
182 182
 	 */
183 183
 	public function resizeByHeight($height) {
184 184
 		if(!$this->valid()) return;
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 	 *
195 195
 	 * @param int $width
196 196
 	 * @param int $height
197
-	 * @return Image_Backend
197
+	 * @return null|ImagickBackend
198 198
 	 */
199 199
 	public function paddedResize($width, $height, $backgroundColor = "FFFFFF") {
200 200
 		$new = $this->resizeRatio($width, $height);
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 	 *
212 212
 	 * @param int $width
213 213
 	 * @param int $height
214
-	 * @return Image_Backend
214
+	 * @return null|ImagickBackend
215 215
 	 */
216 216
 	public function croppedResize($width, $height) {
217 217
 		if(!$this->valid()) return;
Please login to merge, or discard this patch.
filesystem/Upload.php 1 patch
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 	 * Set a different instance than {@link Upload_Validator}
103 103
 	 * for this upload session.
104 104
 	 *
105
-	 * @param object $validator
105
+	 * @param Upload_Validator $validator
106 106
 	 */
107 107
 	public function setValidator($validator) {
108 108
 		$this->validator = $validator;
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 	 *
116 116
 	 * @param $tmpFile array Indexed array that PHP generated for every file it uploads.
117 117
 	 * @param $folderPath string Folder path relative to /assets
118
-	 * @return Boolean|string Either success or error-message.
118
+	 * @return boolean Either success or error-message.
119 119
 	 */
120 120
 	public function load($tmpFile, $folderPath = false) {
121 121
 		$this->clearErrors();
@@ -231,7 +231,8 @@  discard block
 block discarded – undo
231 231
 	}
232 232
 
233 233
 	/**
234
-	 * @return Boolean
234
+	 * @param boolean $bool
235
+	 * @return boolean|null
235 236
 	 */
236 237
 	public function setReplaceFile($bool) {
237 238
 		$this->replaceFile = $bool;
@@ -295,7 +296,7 @@  discard block
 block discarded – undo
295 296
 	/**
296 297
 	 * Determines wether previous operations caused an error.
297 298
 	 *
298
-	 * @return boolean
299
+	 * @return integer
299 300
 	 */
300 301
 	public function isError() {
301 302
 		return (count($this->errors));
Please login to merge, or discard this patch.
forms/DateField.php 1 patch
Doc Comments   +8 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,6 +90,10 @@  discard block
 block discarded – undo
90 90
 	 */
91 91
 	protected $valueObj = null;
92 92
 
93
+	/**
94
+	 * @param string $name
95
+	 * @param string $title
96
+	 */
93 97
 	public function __construct($name, $title = null, $value = null) {
94 98
 		if(!$this->locale) {
95 99
 			$this->locale = i18n::get_locale();
@@ -288,6 +292,9 @@  discard block
 block discarded – undo
288 292
 		return $field;
289 293
 	}
290 294
 
295
+	/**
296
+	 * @param string $class
297
+	 */
291 298
 	public function castedCopy($class) {
292 299
 		$copy = new $class($this->name);
293 300
 		if($copy->hasMethod('setConfig')) {
@@ -326,7 +333,7 @@  discard block
 block discarded – undo
326 333
 	 * @deprecated 4.0 Use the "DateField.default_config" config setting instead
327 334
 	 * @param String $k
328 335
 	 * @param mixed $v
329
-	 * @return boolean
336
+	 * @return boolean|null
330 337
 	 */
331 338
 	public static function set_default_config($k, $v) {
332 339
 		Deprecation::notice('4.0', 'Use the "DateField.default_config" config setting instead');
Please login to merge, or discard this patch.
forms/FileField.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 
86 86
 	/**
87 87
 	 * @param array $properties
88
-	 * @return HTMLText
88
+	 * @return string
89 89
 	 */
90 90
 	public function Field($properties = array()) {
91 91
 		$properties = array_merge($properties, array(
@@ -148,7 +148,6 @@  discard block
 block discarded – undo
148 148
 	/**
149 149
 	 * Get custom validator for this field
150 150
 	 *
151
-	 * @param Upload_Validator $validator
152 151
 	 */
153 152
 	public function getValidator() {
154 153
 		return $this->upload->getValidator();
@@ -244,7 +243,6 @@  discard block
 block discarded – undo
244 243
 	 * for each of these categories
245 244
 	 *
246 245
 	 * @param string $category Category name
247
-	 * @param string,... $categories Additional category names
248 246
 	 * @return $this
249 247
 	 */
250 248
 	public function setAllowedFileCategories($category) {
Please login to merge, or discard this patch.