Completed
Pull Request — master (#5846)
by Hamish
19:13 queued 08:18
created
admin/code/GroupImportForm.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -14,6 +14,10 @@
 block discarded – undo
14 14
 	 */
15 15
 	protected $group;
16 16
 
17
+	/**
18
+	 * @param SecurityAdmin $controller
19
+	 * @param string $name
20
+	 */
17 21
 	public function __construct($controller, $name, $fields = null, $actions = null, $validator = null) {
18 22
 		if(!$fields) {
19 23
 			$helpHtml = _t(
Please login to merge, or discard this patch.
admin/code/MemberImportForm.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,6 +14,10 @@  discard block
 block discarded – undo
14 14
 	 */
15 15
 	protected $group;
16 16
 
17
+	/**
18
+	 * @param SecurityAdmin $controller
19
+	 * @param string $name
20
+	 */
17 21
 	public function __construct($controller, $name, $fields = null, $actions = null, $validator = null) {
18 22
 		if(!$fields) {
19 23
 			$helpHtml = _t(
@@ -100,7 +104,7 @@  discard block
 block discarded – undo
100 104
 	}
101 105
 
102 106
 	/**
103
-	 * @param $group Group
107
+	 * @param DataObject $group Group
104 108
 	 */
105 109
 	public function setGroup($group) {
106 110
 		$this->group = $group;
Please login to merge, or discard this patch.
control/ContentNegotiator.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -109,6 +109,7 @@
 block discarded – undo
109 109
 	/**
110 110
 	 * Returns true if negotiation is enabled for the given response. By default, negotiation is only
111 111
 	 * enabled for pages that have the xml header.
112
+	 * @param SS_HTTPResponse $response
112 113
 	 */
113 114
 	public static function enabled_for($response) {
114 115
 		$contentType = $response->getHeader("Content-Type");
Please login to merge, or discard this patch.
control/CookieJar.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -144,13 +144,13 @@
 block discarded – undo
144 144
 	 * @see http://uk3.php.net/manual/en/function.setcookie.php
145 145
 	 *
146 146
 	 * @param string $name The name of the cookie
147
-	 * @param string|array $value The value for the cookie to hold
147
+	 * @param false|string $value The value for the cookie to hold
148 148
 	 * @param int $expiry The number of days until expiry
149 149
 	 * @param string $path The path to save the cookie on (falls back to site base)
150 150
 	 * @param string $domain The domain to make the cookie available on
151 151
 	 * @param boolean $secure Can the cookie only be sent over SSL?
152 152
 	 * @param boolean $httpOnly Prevent the cookie being accessible by JS
153
-	 * @return boolean If the cookie was set or not; doesn't mean it's accepted by the browser
153
+	 * @return boolean|null If the cookie was set or not; doesn't mean it's accepted by the browser
154 154
 	 */
155 155
 	protected function outputCookie(
156 156
 		$name, $value, $expiry = 90, $path = null, $domain = null, $secure = false, $httpOnly = true
Please login to merge, or discard this patch.
control/Director.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -534,7 +534,7 @@  discard block
 block discarded – undo
534 534
 	 * Returns the domain part of the URL 'http://www.mysite.com'. Returns FALSE is this environment
535 535
 	 * variable isn't set.
536 536
 	 *
537
-	 * @return bool|string
537
+	 * @return string|false
538 538
 	 */
539 539
 	public static function protocolAndHost() {
540 540
 		$alternate = Config::inst()->get('Director', 'alternate_base_url');
@@ -869,7 +869,7 @@  discard block
 block discarded – undo
869 869
 	/**
870 870
 	 * Returns true if the given file exists. Filename should be relative to the site root.
871 871
 	 *
872
-	 * @param $file
872
+	 * @param string $file
873 873
 	 *
874 874
 	 * @return bool
875 875
 	 */
@@ -1087,7 +1087,7 @@  discard block
 block discarded – undo
1087 1087
 	 * Can also be checked with {@link Director::isDev()}, {@link Director::isTest()}, and
1088 1088
 	 * {@link Director::isLive()}.
1089 1089
 	 *
1090
-	 * @return bool|string
1090
+	 * @return string|false
1091 1091
 	 */
1092 1092
 	public static function get_environment_type() {
1093 1093
 		if(Director::isLive()) {
Please login to merge, or discard this patch.
control/PjaxResponseNegotiator.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
 	protected $fragmentOverride = null;
36 36
 
37 37
 	/**
38
-	 * @param RequestHandler $controller
39 38
 	 * @param SS_HTTPResponse An existing response to reuse (optional)
40 39
 	 * @param Array $callbacks
40
+	 * @param SS_HTTPResponse $response
41 41
 	 */
42 42
 	public function __construct($callbacks = array(), $response = null) {
43 43
 		$this->callbacks = $callbacks;
@@ -61,7 +61,6 @@  discard block
 block discarded – undo
61 61
 	 * @param array $extraCallbacks List of anonymous functions or callables returning either a string
62 62
 	 * or SS_HTTPResponse, keyed by their fragment identifier. The 'default' key can
63 63
 	 * be used as a fallback for non-ajax responses.
64
-	 * @param array $fragmentOverride Change the response fragments.
65 64
 	 * @return SS_HTTPResponse
66 65
 	 */
67 66
 	public function respond(SS_HTTPRequest $request, $extraCallbacks = array()) {
@@ -109,7 +108,7 @@  discard block
 block discarded – undo
109 108
 	/**
110 109
 	 * Set up fragment overriding - will completely replace the incoming fragments.
111 110
 	 *
112
-	 * @param array $fragments Fragments to insert.
111
+	 * @param string[] $fragments Fragments to insert.
113 112
 	 */
114 113
 	public function setFragmentOverride($fragments) {
115 114
 		if (!is_array($fragments)) throw new InvalidArgumentException();
Please login to merge, or discard this patch.
control/Session.php 1 patch
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -273,7 +273,6 @@  discard block
 block discarded – undo
273 273
 	 *
274 274
 	 * @deprecated 4.0 Use the "Session.timeout_ips" config setting instead
275 275
 	 *
276
-	 * @param array $session_ips Array of IPv4 rules.
277 276
 	 */
278 277
 	public static function set_timeout_ips($ips) {
279 278
 		Deprecation::notice('4.0', 'Use the "Session.timeout_ips" config setting instead');
@@ -410,6 +409,9 @@  discard block
 block discarded – undo
410 409
 		}
411 410
 	}
412 411
 
412
+	/**
413
+	 * @param string $name
414
+	 */
413 415
 	public function inst_set($name, $val) {
414 416
 		// Quicker execution path for "."-free names
415 417
 		if(strpos($name, '.') === false) {
@@ -458,6 +460,9 @@  discard block
 block discarded – undo
458 460
 		$diffVar[sizeof($var)-1] = $val;
459 461
 	}
460 462
 
463
+	/**
464
+	 * @param string $name
465
+	 */
461 466
 	public function inst_get($name) {
462 467
 		// Quicker execution path for "."-free names
463 468
 		if(strpos($name, '.') === false) {
Please login to merge, or discard this patch.
core/ArrayLib.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
 	 *
169 169
 	 * Actually only one array argument is supported.
170 170
 	 *
171
-	 * @param $f callback to apply
171
+	 * @param string $f callback to apply
172 172
 	 * @param $array array
173 173
 	 * @return array
174 174
 	 */
Please login to merge, or discard this patch.
core/Diff.php 1 patch
Doc Comments   +10 added lines, -1 removed lines patch added patch discarded remove patch
@@ -247,6 +247,10 @@  discard block
 block discarded – undo
247 247
 	 * match.  The caller must trim matching lines from the beginning and end
248 248
 	 * of the portions it is going to specify.
249 249
 	 */
250
+
251
+	/**
252
+	 * @param double $nchunks
253
+	 */
250 254
 	public function _diag ($xoff, $xlim, $yoff, $ylim, $nchunks) {
251 255
 	$flip = false;
252 256
 
@@ -357,6 +361,11 @@  discard block
 block discarded – undo
357 361
 	 * Note that XLIM, YLIM are exclusive bounds.
358 362
 	 * All line numbers are origin-0 and discarded lines are not counted.
359 363
 	 */
364
+
365
+	/**
366
+	 * @param integer $xoff
367
+	 * @param integer $yoff
368
+	 */
360 369
 	public function _compareseq ($xoff, $xlim, $yoff, $ylim) {
361 370
 	// Slide down the bottom initial diagonal.
362 371
 	while ($xoff < $xlim && $yoff < $ylim
@@ -554,7 +563,7 @@  discard block
 block discarded – undo
554 563
 	 *
555 564
 	 *  $diff = new Diff($lines1, $lines2);
556 565
 	 *  $rev = $diff->reverse();
557
-	 * @return object A Diff object representing the inverse of the
566
+	 * @return Diff A Diff object representing the inverse of the
558 567
 	 *                original diff.
559 568
 	 */
560 569
 	public function reverse () {
Please login to merge, or discard this patch.