Completed
Push — 3.6 ( 598edd...b9c29e )
by Robbie
23s queued 10s
created
view/SSViewer.php 1 patch
Doc Comments   +13 added lines, -4 removed lines patch added patch discarded remove patch
@@ -336,7 +336,6 @@  discard block
 block discarded – undo
336 336
 	/**
337 337
 	 * Returns the modulus of the numerical position of the item in the data set.
338 338
 	 * The count starts from $startIndex, which defaults to 1.
339
-	 * @param int $Mod The number to perform Mod operation to.
340 339
 	 * @param int $startIndex Number to start count from.
341 340
 	 * @return int
342 341
 	 */
@@ -410,6 +409,10 @@  discard block
 block discarded – undo
410 409
 		$this->underlay = $underlay ? $underlay : array();
411 410
 	}
412 411
 
412
+	/**
413
+	 * @param string $interfaceToQuery
414
+	 * @param string $variableMethod
415
+	 */
413 416
 	protected function createCallableArray(&$extraArray, $interfaceToQuery, $variableMethod, $createObject = false) {
414 417
 		$implementers = ClassInfo::implementorsOf($interfaceToQuery);
415 418
 		if($implementers) foreach($implementers as $implementer) {
@@ -751,7 +754,7 @@  discard block
 block discarded – undo
751 754
 	 *
752 755
 	 * @param $className string - valid class name
753 756
 	 * @param $suffix string
754
-	 * @param $baseClass string
757
+	 * @param string $baseClass string
755 758
 	 *
756 759
 	 * @return array
757 760
 	 */
@@ -1156,7 +1159,7 @@  discard block
 block discarded – undo
1156 1159
 	 * @param string $template Template name
1157 1160
 	 * @param mixed $data Data context
1158 1161
 	 * @param array $arguments Additional arguments
1159
-	 * @return string Evaluated result
1162
+	 * @return HTMLText Evaluated result
1160 1163
 	 */
1161 1164
 	public static function execute_template($template, $data, $arguments = null, $scope = null) {
1162 1165
 		$v = new SSViewer($template);
@@ -1182,6 +1185,9 @@  discard block
 block discarded – undo
1182 1185
 		return $v->process($data, $arguments);
1183 1186
 	}
1184 1187
 
1188
+	/**
1189
+	 * @param string $content
1190
+	 */
1185 1191
 	public function parseTemplateContent($content, $template="") {
1186 1192
 		return $this->getParser()->compileString(
1187 1193
 			$content,
@@ -1210,7 +1216,7 @@  discard block
 block discarded – undo
1210 1216
 	 * Return an appropriate base tag for the given template.
1211 1217
 	 * It will be closed on an XHTML document, and unclosed on an HTML document.
1212 1218
 	 *
1213
-	 * @param $contentGeneratedSoFar The content of the template generated so far; it should contain
1219
+	 * @param string $contentGeneratedSoFar The content of the template generated so far; it should contain
1214 1220
 	 * the DOCTYPE declaration.
1215 1221
 	 */
1216 1222
 	public static function get_base_tag($contentGeneratedSoFar) {
@@ -1251,6 +1257,9 @@  discard block
 block discarded – undo
1251 1257
 	 */
1252 1258
 	protected $cacheTemplate;
1253 1259
 
1260
+	/**
1261
+	 * @param string $content
1262
+	 */
1254 1263
 	public function __construct($content, TemplateParser $parser = null) {
1255 1264
 		if ($parser) {
1256 1265
 			$this->setParser($parser);
Please login to merge, or discard this patch.
view/ViewableData.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -189,8 +189,6 @@  discard block
 block discarded – undo
189 189
 	/**
190 190
 	 * Method to facilitate deprecation of underscore-prefixed methods automatically being cached.
191 191
 	 *
192
-	 * @param string $field
193
-	 * @param array $arguments
194 192
 	 * @param string $identifier an optional custom cache identifier
195 193
 	 * @return unknown
196 194
 	 */
@@ -251,7 +249,7 @@  discard block
 block discarded – undo
251 249
 	 *  - castingHelper: the casting helper for casting the field (e.g. "return new Varchar($fieldName)")
252 250
 	 *
253 251
 	 * @param string $field
254
-	 * @return array
252
+	 * @return string
255 253
 	 */
256 254
 	public function castingHelperPair($field) {
257 255
 		Deprecation::notice('2.5', 'use castingHelper() instead');
@@ -501,6 +499,7 @@  discard block
 block discarded – undo
501 499
 
502 500
 	/**
503 501
 	 * Return the value of a field in an SQL-safe format.
502
+	 * @param string $field
504 503
 	 */
505 504
 	public function SQL_val($field, $arguments = null, $cache = true) {
506 505
 		return Convert::raw2sql($this->RAW_val($field, $arguments, $cache));
@@ -508,6 +507,7 @@  discard block
 block discarded – undo
508 507
 
509 508
 	/**
510 509
 	 * Return the value of a field in a JavaScript-save format.
510
+	 * @param string $field
511 511
 	 */
512 512
 	public function JS_val($field, $arguments = null, $cache = true) {
513 513
 		return Convert::raw2js($this->RAW_val($field, $arguments, $cache));
@@ -515,6 +515,7 @@  discard block
 block discarded – undo
515 515
 
516 516
 	/**
517 517
 	 * Return the value of a field escaped suitable to be inserted into an XML node attribute.
518
+	 * @param string $field
518 519
 	 */
519 520
 	public function ATT_val($field, $arguments = null, $cache = true) {
520 521
 		return Convert::raw2att($this->RAW_val($field, $arguments, $cache));
@@ -525,7 +526,6 @@  discard block
 block discarded – undo
525 526
 	/**
526 527
 	 * Get an array of XML-escaped values by field name
527 528
 	 *
528
-	 * @param array $elements an array of field names
529 529
 	 * @return array
530 530
 	 */
531 531
 	public function getXMLValues($fields) {
Please login to merge, or discard this patch.
admin/code/CMSForm.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -53,6 +53,7 @@
 block discarded – undo
53 53
 	 * Set actions that are exempt from validation
54 54
 	 *
55 55
 	 * @param array
56
+	 * @param string[] $actions
56 57
 	 */
57 58
 	public function setValidationExemptActions($actions) {
58 59
 		$this->validationExemptActions = $actions;
Please login to merge, or discard this patch.
control/Controller.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -322,6 +322,9 @@  discard block
 block discarded – undo
322 322
 		return new SSViewer($templates);
323 323
 	}
324 324
 
325
+	/**
326
+	 * @param string $action
327
+	 */
325 328
 	public function hasAction($action) {
326 329
 		return parent::hasAction($action) || $this->hasActionTemplate($action);
327 330
 	}
@@ -385,7 +388,7 @@  discard block
 block discarded – undo
385 388
 	 * by {@link getViewer()}.
386 389
 	 *
387 390
 	 * @param array $params Key-value array for custom template variables (Optional)
388
-	 * @return string Parsed template content
391
+	 * @return HTMLText Parsed template content
389 392
 	 */
390 393
 	public function render($params = null) {
391 394
 		$template = $this->getViewer($this->getAction());
@@ -540,7 +543,7 @@  discard block
 block discarded – undo
540 543
 
541 544
 	/**
542 545
 	 * Tests whether a redirection has been requested.
543
-	 * @return string If redirect() has been called, it will return the URL redirected to.  Otherwise, it will
546
+	 * @return boolean If redirect() has been called, it will return the URL redirected to.  Otherwise, it will
544 547
 	 * return null;
545 548
 	 */
546 549
 	public function redirectedTo() {
Please login to merge, or discard this patch.
control/Director.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -463,7 +463,7 @@  discard block
 block discarded – undo
463 463
 	/**
464 464
 	 * Returns the part of the URL, 'http://www.mysite.com'.
465 465
 	 *
466
-	 * @return boolean|string The domain from the PHP environment. Returns FALSE is this environment variable isn't
466
+	 * @return string|false The domain from the PHP environment. Returns FALSE is this environment variable isn't
467 467
 	 *                        set.
468 468
 	 */
469 469
 	public static function protocolAndHost() {
@@ -747,7 +747,6 @@  discard block
 block discarded – undo
747 747
 	/**
748 748
 	 * Takes a $_SERVER data array and extracts HTTP request headers.
749 749
 	 *
750
-	 * @param  array $data
751 750
 	 * @return array
752 751
 	 */
753 752
 	public static function extract_request_headers(array $server) {
@@ -780,7 +779,7 @@  discard block
 block discarded – undo
780 779
 
781 780
 	/**
782 781
 	 * Returns true if the given file exists.
783
-	 * @param $file Filename specified relative to the site root
782
+	 * @param string $file Filename specified relative to the site root
784 783
 	 */
785 784
 	public static function fileExists($file) {
786 785
 		// replace any appended query-strings, e.g. /path/to/foo.php?bar=1 to /path/to/foo.php
Please login to merge, or discard this patch.
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/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.
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/Form.php 1 patch
Doc Comments   +10 added lines, -5 removed lines patch added patch discarded remove patch
@@ -532,7 +532,7 @@  discard block
 block discarded – undo
532 532
 	/**
533 533
 	 * Fields can have action to, let's check if anyone of the responds to $funcname them
534 534
 	 *
535
-	 * @param SS_List|array $fields
535
+	 * @param FieldList|null $fields
536 536
 	 * @param callable $funcName
537 537
 	 * @return FormField
538 538
 	 */
@@ -791,6 +791,7 @@  discard block
 block discarded – undo
791 791
 	}
792 792
 
793 793
 	/**
794
+	 * @param string $name
794 795
 	 * @return string $name
795 796
 	 */
796 797
 	public function getAttribute($name) {
@@ -825,6 +826,7 @@  discard block
 block discarded – undo
825 826
 	 *
826 827
 	 * @param array Custom attributes to process. Falls back to {@link getAttributes()}.
827 828
 	 * If at least one argument is passed as a string, all arguments act as excludes by name.
829
+	 * @param string $attrs
828 830
 	 *
829 831
 	 * @return string HTML attributes, ready for insertion into an HTML tag
830 832
 	 */
@@ -1032,7 +1034,7 @@  discard block
 block discarded – undo
1032 1034
 	 * If set to false (the default), then the form method is only used to construct the default
1033 1035
 	 * form.
1034 1036
 	 *
1035
-	 * @param $bool boolean
1037
+	 * @param boolean $bool boolean
1036 1038
 	 * @return $this
1037 1039
 	 */
1038 1040
 	public function setStrictFormMethodCheck($bool) {
@@ -1529,7 +1531,7 @@  discard block
 block discarded – undo
1529 1531
 	 * This is returned when you access a form as $FormObject rather
1530 1532
 	 * than <% with FormObject %>
1531 1533
 	 *
1532
-	 * @return HTML
1534
+	 * @return HTMLText
1533 1535
 	 */
1534 1536
 	public function forTemplate() {
1535 1537
 		$return = $this->renderWith(array_merge(
@@ -1549,7 +1551,7 @@  discard block
 block discarded – undo
1549 1551
 	 * It triggers slightly different behaviour, such as disabling the rewriting
1550 1552
 	 * of # links.
1551 1553
 	 *
1552
-	 * @return HTML
1554
+	 * @return HTMLText
1553 1555
 	 */
1554 1556
 	public function forAjaxTemplate() {
1555 1557
 		$view = new SSViewer(array(
@@ -1572,7 +1574,7 @@  discard block
 block discarded – undo
1572 1574
 	 * and _form_enctype.  These are the attributes of the form.  These fields
1573 1575
 	 * can be used to send the form to Ajax.
1574 1576
 	 *
1575
-	 * @return HTML
1577
+	 * @return string
1576 1578
 	 */
1577 1579
 	public function formHtmlContent() {
1578 1580
 		$this->IncludeFormTag = false;
@@ -1830,6 +1832,9 @@  discard block
 block discarded – undo
1830 1832
 
1831 1833
 	protected $form;
1832 1834
 
1835
+	/**
1836
+	 * @param Form $form
1837
+	 */
1833 1838
 	public function __construct($form) {
1834 1839
 		$this->form = $form;
1835 1840
 		parent::__construct();
Please login to merge, or discard this patch.