Completed
Pull Request — master (#6266)
by Sam
14:39 queued 17s
created
admin/tests/CampaignAdminTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
 	/**
12 12
 	 * Call a protected method on an object via reflection
13 13
 	 *
14
-	 * @param object $object The object to call the method on
14
+	 * @param CampaignAdmin $object The object to call the method on
15 15
 	 * @param string $method The name of the method
16
-	 * @param array $args The arguments to pass to the method
16
+	 * @param CampaignAdminTest_InvalidChangeSet[] $args The arguments to pass to the method
17 17
 	 */
18 18
 	function callProtectedMethod($object, $method, $args = []) {
19 19
 	  $class = new ReflectionClass(get_class($object));
Please login to merge, or discard this patch.
src/Assets/File.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -412,7 +412,7 @@  discard block
 block discarded – undo
412 412
 	 * Check if this file can be modified
413 413
 	 *
414 414
 	 * @param Member $member
415
-	 * @return boolean
415
+	 * @return boolean|string
416 416
 	 */
417 417
 	public function canEdit($member = null) {
418 418
 		if(!$member) {
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
 	 *
433 433
 	 * @param Member $member
434 434
 	 * @param array $context
435
-	 * @return boolean
435
+	 * @return boolean|string
436 436
 	 */
437 437
 	public function canCreate($member = null, $context = array()) {
438 438
 		if(!$member) {
@@ -451,7 +451,7 @@  discard block
 block discarded – undo
451 451
 	 * Check if this file can be deleted
452 452
 	 *
453 453
 	 * @param Member $member
454
-	 * @return boolean
454
+	 * @return boolean|string
455 455
 	 */
456 456
 	public function canDelete($member = null) {
457 457
 		if(!$member) {
@@ -647,7 +647,7 @@  discard block
 block discarded – undo
647 647
 	 *
648 648
 	 * @param string $condition The PHP condition to be evaluated.  The page will be called $item
649 649
 	 * @param array $collator An array, passed by reference, to collect all of the matching descendants.
650
-	 * @return true|null
650
+	 * @return boolean|null
651 651
 	 */
652 652
 	public function collateDescendants($condition, &$collator) {
653 653
 		if($children = $this->Children()) {
@@ -1020,6 +1020,7 @@  discard block
 block discarded – undo
1020 1020
 	 *
1021 1021
 	 * @param String File extension, without dot prefix. Use an asterisk ('*')
1022 1022
 	 * to specify a generic fallback if no mapping is found for an extension.
1023
+	 * @param string $ext
1023 1024
 	 * @return String Classname for a subclass of {@link File}
1024 1025
 	 */
1025 1026
 	public static function get_class_for_file_extension($ext) {
@@ -1163,7 +1164,6 @@  discard block
 block discarded – undo
1163 1164
 	 * Note that the result will not have a leading slash, and should not be used
1164 1165
 	 * with local file paths.
1165 1166
 	 *
1166
-	 * @param string $part,... Parts
1167 1167
 	 * @return string
1168 1168
 	 */
1169 1169
 	public static function join_paths($part = null) {
Please login to merge, or discard this patch.
src/Assets/Flysystem/AssetAdapter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@
 block discarded – undo
40 40
         ]
41 41
 	);
42 42
 
43
+	/**
44
+	 * @param string $root
45
+	 */
43 46
 	public function __construct($root = null, $writeFlags = LOCK_EX, $linkHandling = self::DISALLOW_LINKS) {
44 47
 		// Get root path
45 48
 		$root = $this->findRoot($root);
Please login to merge, or discard this patch.
src/Assets/Folder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
 	 * Find the given folder or create it as a database record
57 57
 	 *
58 58
 	 * @param string $folderPath Directory path relative to assets root
59
-	 * @return Folder|null
59
+	 * @return null|\SilverStripe\ORM\DataObject
60 60
 	 */
61 61
 	public static function find_or_make($folderPath) {
62 62
 		// replace leading and trailing slashes
Please login to merge, or discard this patch.
src/Assets/GDBackend.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
 	 * Check if this image has previously crashed GD when attempting to open it - if it's opened
192 192
 	 * successfully, the manipulation's cache key is removed.
193 193
 	 *
194
-	 * @param string $arg,... Any number of args that identify this image
194
+	 * @param string $arg
195 195
 	 * @return bool True if failed
196 196
 	 */
197 197
 	public function failedResample($arg = null) {
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 	/**
203 203
 	 * Mark a file as failed
204 204
 	 *
205
-	 * @param string $arg,... Any number of args that identify this image
205
+	 * @param string $arg
206 206
 	 */
207 207
 	protected function markFailed($arg = null) {
208 208
 		$key = sha1(implode('|', func_get_args()));
@@ -212,7 +212,6 @@  discard block
 block discarded – undo
212 212
 	/**
213 213
 	 * Mark a file as succeeded
214 214
 	 *
215
-	 * @param string $arg,... Any number of args that identify this image
216 215
 	 */
217 216
 	protected function markSucceeded($arg = null) {
218 217
 		$key = sha1(implode('|', func_get_args()));
@@ -363,7 +362,7 @@  discard block
 block discarded – undo
363 362
 	 * using built-in function. Used when imagerotate function is not available(i.e. Ubuntu)
364 363
 	 *
365 364
 	 * @param float $angle Angle in degrees
366
-	 * @return static
365
+	 * @return null|resource
367 366
 	 */
368 367
 	public function rotatePixelByPixel($angle) {
369 368
 		if(!$this->gd) {
Please login to merge, or discard this patch.
src/Assets/ImageManipulation.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -762,7 +762,6 @@
 block discarded – undo
762 762
 	 * Name a variant based on a format with arbitrary parameters
763 763
 	 *
764 764
 	 * @param string $format The format name.
765
-	 * @param mixed $arg,... Additional arguments
766 765
 	 * @return string
767 766
 	 * @throws InvalidArgumentException
768 767
 	 */
Please login to merge, or discard this patch.
src/Assets/Upload.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 	 * Set a different instance than {@link Upload_Validator}
115 115
 	 * for this upload session.
116 116
 	 *
117
-	 * @param object $validator
117
+	 * @param Upload_Validator $validator
118 118
 	 */
119 119
 	public function setValidator($validator) {
120 120
 		$this->validator = $validator;
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
 	/**
364 364
 	 * Determines wether previous operations caused an error.
365 365
 	 *
366
-	 * @return boolean
366
+	 * @return integer
367 367
 	 */
368 368
 	public function isError() {
369 369
 		return (count($this->errors));
Please login to merge, or discard this patch.
src/Control/Controller.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -142,6 +142,7 @@  discard block
 block discarded – undo
142 142
 	 * {@inheritdoc}
143 143
 	 *
144 144
 	 * Also set the URLParams
145
+	 * @param HTTPRequest $request
145 146
 	 */
146 147
 	public function setRequest($request) {
147 148
 		$return = parent::setRequest($request);
@@ -501,7 +502,7 @@  discard block
 block discarded – undo
501 502
 	 *
502 503
 	 * @param array $params
503 504
 	 *
504
-	 * @return string
505
+	 * @return DBHTMLText
505 506
 	 */
506 507
 	public function render($params = null) {
507 508
 		$template = $this->getViewer($this->getAction());
@@ -664,7 +665,7 @@  discard block
 block discarded – undo
664 665
 	 * Tests whether a redirection has been requested. If redirect() has been called, it will return
665 666
 	 * the URL redirected to. Otherwise, it will return null.
666 667
 	 *
667
-	 * @return null|string
668
+	 * @return boolean
668 669
 	 */
669 670
 	public function redirectedTo() {
670 671
 		return $this->getResponse() && $this->getResponse()->getHeader('Location');
@@ -695,7 +696,6 @@  discard block
 block discarded – undo
695 696
 	 *
696 697
 	 * Caution: All parameters are expected to be URI-encoded already.
697 698
 	 *
698
-	 * @param string|array $arg,.. One or more link segments, or list of link segments as an array
699 699
 	 * @return string
700 700
 	 */
701 701
 	public static function join_links($arg = null) {
Please login to merge, or discard this patch.
src/Control/CookieJar.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
 	 * @see http://uk3.php.net/manual/en/function.setcookie.php
148 148
 	 *
149 149
 	 * @param string $name The name of the cookie
150
-	 * @param string|array $value The value for the cookie to hold
150
+	 * @param false|string $value The value for the cookie to hold
151 151
 	 * @param int $expiry The number of days until expiry
152 152
 	 * @param string $path The path to save the cookie on (falls back to site base)
153 153
 	 * @param string $domain The domain to make the cookie available on
Please login to merge, or discard this patch.