Completed
Push — add-helm-chart ( 4f6178...a303dc )
by Ilia
26:53
created
vendor/symfony/polyfill-mbstring/Mbstring.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -270,6 +270,9 @@  discard block
 block discarded – undo
270 270
         return self::mb_detect_encoding($var, array($encoding)) || false !== @iconv($encoding, $encoding, $var);
271 271
     }
272 272
 
273
+    /**
274
+     * @return string
275
+     */
273 276
     public static function mb_detect_encoding($str, $encodingList = null, $strict = false)
274 277
     {
275 278
         if (null === $encodingList) {
@@ -574,6 +577,9 @@  discard block
 block discarded – undo
574 577
         return $code;
575 578
     }
576 579
 
580
+    /**
581
+     * @param boolean $part
582
+     */
577 583
     private static function getSubpart($pos, $part, $haystack, $encoding)
578 584
     {
579 585
         if (false === $pos) {
@@ -621,6 +627,9 @@  discard block
 block discarded – undo
621 627
         return self::mb_convert_case($s[0], MB_CASE_UPPER, 'UTF-8');
622 628
     }
623 629
 
630
+    /**
631
+     * @param string $file
632
+     */
624 633
     private static function getData($file)
625 634
     {
626 635
         if (file_exists($file = __DIR__.'/Resources/unidata/'.$file.'.php')) {
Please login to merge, or discard this patch.
vendor/symfony/yaml/Tests/Command/LintCommandTest.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -64,6 +64,7 @@
 block discarded – undo
64 64
     }
65 65
 
66 66
     /**
67
+     * @param string $content
67 68
      * @return string Path to the new file
68 69
      */
69 70
     private function createFile($content)
Please login to merge, or discard this patch.
vendor/webmozart/assert/src/Assert.php 1 patch
Doc Comments   +21 added lines patch added patch discarded remove patch
@@ -164,6 +164,9 @@  discard block
 block discarded – undo
164 164
         static::notEmpty($value, $message);
165 165
     }
166 166
 
167
+    /**
168
+     * @param integer $value
169
+     */
167 170
     public static function integer($value, $message = '')
168 171
     {
169 172
         if (!is_int($value)) {
@@ -204,6 +207,9 @@  discard block
 block discarded – undo
204 207
         }
205 208
     }
206 209
 
210
+    /**
211
+     * @param boolean $value
212
+     */
207 213
     public static function boolean($value, $message = '')
208 214
     {
209 215
         if (!is_bool($value)) {
@@ -334,6 +340,9 @@  discard block
 block discarded – undo
334 340
         }
335 341
     }
336 342
 
343
+    /**
344
+     * @param null|\phpDocumentor\Reflection\DocBlock\DescriptionFactory $value
345
+     */
337 346
     public static function notNull($value, $message = '')
338 347
     {
339 348
         if (null === $value) {
@@ -363,6 +372,9 @@  discard block
 block discarded – undo
363 372
         }
364 373
     }
365 374
 
375
+    /**
376
+     * @param integer $value
377
+     */
366 378
     public static function eq($value, $value2, $message = '')
367 379
     {
368 380
         if ($value2 != $value) {
@@ -712,6 +724,9 @@  discard block
 block discarded – undo
712 724
         }
713 725
     }
714 726
 
727
+    /**
728
+     * @param string $value
729
+     */
715 730
     public static function classExists($value, $message = '')
716 731
     {
717 732
         if (!class_exists($value)) {
@@ -733,6 +748,9 @@  discard block
 block discarded – undo
733 748
         }
734 749
     }
735 750
 
751
+    /**
752
+     * @param string $value
753
+     */
736 754
     public static function implementsInterface($value, $interface, $message = '')
737 755
     {
738 756
         if (!in_array($interface, class_implements($value))) {
@@ -937,6 +955,9 @@  discard block
 block discarded – undo
937 955
         return mb_strwidth($value, $encoding);
938 956
     }
939 957
 
958
+    /**
959
+     * @param string $message
960
+     */
940 961
     protected static function reportInvalidArgument($message)
941 962
     {
942 963
         throw new InvalidArgumentException($message);
Please login to merge, or discard this patch.
mod/gccollab_theme/include/fgcontactform.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -724,6 +724,9 @@
 block discarded – undo
724 724
         $this->message = $this->StripSlashes($_POST['message']);
725 725
     }
726 726
 
727
+    /**
728
+     * @param string $error
729
+     */
727 730
     function add_error($error)
728 731
     {
729 732
         array_push($this->errors,$error);
Please login to merge, or discard this patch.
vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -43,6 +43,9 @@
 block discarded – undo
43 43
     /** @var string The version vector. */
44 44
     private $version = '';
45 45
 
46
+    /**
47
+     * @param string $version
48
+     */
46 49
     public function __construct($version = null, Description $description = null)
47 50
     {
48 51
         Assert::nullOrStringNotEmpty($version);
Please login to merge, or discard this patch.
vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Version.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -43,6 +43,9 @@
 block discarded – undo
43 43
     /** @var string The version vector. */
44 44
     private $version = '';
45 45
 
46
+    /**
47
+     * @param string $version
48
+     */
46 49
     public function __construct($version = null, Description $description = null)
47 50
     {
48 51
         Assert::nullOrStringNotEmpty($version);
Please login to merge, or discard this patch.
mod/gc_api/lib/blog.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@
 block discarded – undo
45 45
 
46 46
 	return $output;
47 47
 }
48
+/**
49
+ * @param ElggEntity $entity
50
+ */
48 51
 function get_blog($entity)
49 52
 {
50 53
 	/*
Please login to merge, or discard this patch.
mod/gcconnex_theme/include/fgcontactform.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -758,6 +758,9 @@
 block discarded – undo
758 758
 		$this->message = $this->StripSlashes($_POST['message']);
759 759
 	}
760 760
 
761
+	/**
762
+	 * @param string $error
763
+	 */
761 764
 	public function add_error($error)
762 765
 	{
763 766
 		array_push($this->errors, $error);
Please login to merge, or discard this patch.
mod/uservalidationbyemail/start.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
  * @param string $type
63 63
  * @param bool   $value
64 64
  * @param array  $params
65
- * @return bool
65
+ * @return null|boolean
66 66
  */
67 67
 function uservalidationbyemail_disable_new_user($hook, $type, $value, $params) {
68 68
 	$user = elgg_extract('user', $params);
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
  * Checks if an account is validated
156 156
  *
157 157
  * @params array $credentials The username and password
158
- * @return bool
158
+ * @return boolean|null
159 159
  */
160 160
 function uservalidationbyemail_check_auth_attempt($credentials) {
161 161
 
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
  * @param string   $event
235 235
  * @param string   $type
236 236
  * @param ElggUser $user
237
- * @return bool
237
+ * @return false|null
238 238
  *
239 239
  * @throws LoginException
240 240
  */
Please login to merge, or discard this patch.