Passed
Push — scrutinizer-code-quality ( eedb15...27193c )
by Adam
54:15 queued 15s
created
SugarSecurity.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -72,6 +72,9 @@
 block discarded – undo
72 72
 		}
73 73
 	}
74 74
 	
75
+	/**
76
+	 * @param string $contents
77
+	 */
75 78
 	function scanContents($contents){
76 79
 		return;	
77 80
 	}
Please login to merge, or discard this patch.
XTemplate/xtpl.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -278,6 +278,9 @@  discard block
 block discarded – undo
278 278
 /*
279 279
 	returns true if a block exists otherwise returns false.
280 280
 */
281
+/**
282
+ * @param string $bname
283
+ */
281 284
 function exists($bname){
282 285
 	return (!empty($this->parsed_blocks[$bname])) || (!empty($this->blocks[$bname]));
283 286
 }
@@ -325,6 +328,9 @@  discard block
 block discarded – undo
325 328
 	returns the parsed text for a block
326 329
 */
327 330
 
331
+/**
332
+ * @return string
333
+ */
328 334
 function text($bname) {
329 335
 
330 336
     if(!empty($this->parsed_blocks)){
@@ -446,6 +452,9 @@  discard block
 block discarded – undo
446 452
 */
447 453
 
448 454
 
455
+/**
456
+ * @param string $block
457
+ */
449 458
 function maketree($con,$block) {
450 459
 	$con2=explode($this->block_start_delim,$con);
451 460
 	$level=0;
Please login to merge, or discard this patch.
include/generic/SugarWidgets/SugarWidgetField.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -361,6 +361,9 @@
 block discarded – undo
361 361
 		return $this->recursiveVariableReplace($defs, $module, $var_values);
362 362
 	}
363 363
 
364
+	/**
365
+	 * @return string
366
+	 */
364 367
 	public function getModuleDir(){
365 368
 		return $this->module_dir;
366 369
 	}
Please login to merge, or discard this patch.
include/HTTP_WebDAV_Server/Tools/_parse_lockinfo.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -58,6 +58,7 @@
 block discarded – undo
58 58
 	 * constructor
59 59
 	 *
60 60
 	 * @access public
61
+	 * @param string $path
61 62
 	 */
62 63
 	function _parse_propfind($path) 
63 64
 	{
Please login to merge, or discard this patch.
include/Pear/Crypt_Blowfish/Blowfish.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     /**
33 33
      * @param InputInterface $input
34 34
      * @param OutputInterface $output
35
-     * @return bool
35
+     * @return boolean|null
36 36
      */
37 37
     protected function execute(InputInterface $input, OutputInterface $output) {
38 38
         parent::_execute($input, $output);
Please login to merge, or discard this patch.
include/Smarty/internals/core.load_plugins.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 
19 19
  // $tpl_file, $cache_id, $compile_id, $results
20 20
 
21
+/**
22
+ * @param Smarty $smarty
23
+ */
21 24
 function smarty_core_write_cache_file($params, &$smarty)
22 25
 {
23 26
 
Please login to merge, or discard this patch.
include/Smarty/internals/core.load_resource_plugin.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 
19 19
  // $tpl_file, $cache_id, $compile_id, $results
20 20
 
21
+/**
22
+ * @param Smarty $smarty
23
+ */
21 24
 function smarty_core_write_cache_file($params, &$smarty)
22 25
 {
23 26
 
Please login to merge, or discard this patch.
include/Smarty/internals/core.read_cache_file.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 
19 19
  // $tpl_file, $cache_id, $compile_id, $results
20 20
 
21
+/**
22
+ * @param Smarty $smarty
23
+ */
21 24
 function smarty_core_write_cache_file($params, &$smarty)
22 25
 {
23 26
 
Please login to merge, or discard this patch.
include/Smarty/internals/core.rm_auto.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 
19 19
  // $tpl_file, $cache_id, $compile_id, $results
20 20
 
21
+/**
22
+ * @param Smarty $smarty
23
+ */
21 24
 function smarty_core_write_cache_file($params, &$smarty)
22 25
 {
23 26
 
Please login to merge, or discard this patch.