Test Failed
Push — CI ( c95a04...5b7ec7 )
by Adam
105:00 queued 49:09
created
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.
include/utils/mvc_utils.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -48,6 +48,9 @@
 block discarded – undo
48 48
 
49 49
 ////	COMMON
50 50
 
51
+/**
52
+ * @param string $type
53
+ */
51 54
 function ajaxSqlProgress($persistence, $sql, $type) {
52 55
 	global $mod_strings;
53 56
 
Please login to merge, or discard this patch.
include/utils/php_zip_utils.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -48,6 +48,9 @@  discard block
 block discarded – undo
48 48
 if ( isset($GLOBALS['log']) && class_implements($GLOBALS['log'],'LoggerTemplate') ) {
49 49
     $GLOBALS['log']->deprecated('Use of PCLZip has been deprecated. Please enable the zip extension in your PHP install ( see http://www.php.net/manual/en/zip.installation.php for more details ).');
50 50
 }
51
+/**
52
+ * @param false|string $zip_dir
53
+ */
51 54
 function unzip( $zip_archive, $zip_dir, $forceOverwrite = false ){
52 55
     if( !is_dir( $zip_dir ) ){
53 56
         if (!defined('SUGAR_PHPUNIT_RUNNER'))
@@ -100,6 +103,9 @@  discard block
 block discarded – undo
100 103
     }
101 104
 }
102 105
 
106
+/**
107
+ * @param string $zip_dir
108
+ */
103 109
 function zip_dir( $zip_dir, $zip_archive ){
104 110
     $archive    = new PclZip( $zip_archive );
105 111
     $v_list     = $archive->create( $zip_dir );
Please login to merge, or discard this patch.
modules/AOP_Case_Updates/AOP_Case_Updates.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -279,6 +279,9 @@
 block discarded – undo
279 279
         return true;
280 280
     }
281 281
 
282
+    /**
283
+     * @param EmailTemplate $template
284
+     */
282 285
     function parse_template(SugarBean $bean, &$template, $object_override = array()){
283 286
         global $sugar_config;
284 287
 
Please login to merge, or discard this patch.
modules/AOR_Conditions/AOR_Condition.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -57,6 +57,9 @@
 block discarded – undo
57 57
 		parent::Basic();
58 58
 	}
59 59
 
60
+    /**
61
+     * @param AOR_Report $parent
62
+     */
60 63
     function save_lines($post_data, $parent, $key = ''){
61 64
 
62 65
         require_once('modules/AOW_WorkFlow/aow_utils.php');
Please login to merge, or discard this patch.