Completed
Push — composer-installed ( c4bac5 )
by Ilia
07:57
created
engine/lib/plugins.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
  * Returns an ordered list of plugins
156 156
  *
157 157
  * @param string $status    The status of the plugins. active, inactive, or all.
158
- * @param mixed  $site_guid Optional site guid
158
+ * @param integer  $site_guid Optional site guid
159 159
  * @return \ElggPlugin[]
160 160
  * @since 1.8.0
161 161
  */
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
  * @param string $type The type of provides to return
227 227
  * @param string $name A specific provided name to return. Requires $provide_type.
228 228
  *
229
- * @return array
229
+ * @return string|null
230 230
  * @since 1.8.0
231 231
  * @access private
232 232
  */
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
  *
367 367
  * @param string $name      The name of the setting.
368 368
  * @param string $plugin_id The plugin ID (Required)
369
- * @param mixed  $default   The default value to return if none is set
369
+ * @param integer  $default   The default value to return if none is set
370 370
  *
371 371
  * @return mixed
372 372
  * @since 1.8.0
@@ -458,7 +458,7 @@  discard block
 block discarded – undo
458 458
  * @param string $event  deactivate
459 459
  * @param string $type   plugin
460 460
  * @param array  $params Parameters array containing entry with ELggPlugin instance under 'plugin_entity' key
461
- * @return bool  false to block plugin deactivation action
461
+ * @return false|null  false to block plugin deactivation action
462 462
  *
463 463
  * @access private
464 464
  */
Please login to merge, or discard this patch.
vendor/symfony/yaml/Command/LintCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -101,6 +101,9 @@
 block discarded – undo
101 101
         return $this->display($io, $filesInfo);
102 102
     }
103 103
 
104
+    /**
105
+     * @param string $content
106
+     */
104 107
     private function validate($content, $file = null)
105 108
     {
106 109
         $prevErrorHandler = set_error_handler(function ($level, $message, $file, $line) use (&$prevErrorHandler) {
Please login to merge, or discard this patch.