Ignore:
Timestamp:
Apr 6, 2020, 11:56:19 PM (5 years ago)
Author:
chronos
Message:
  • Modified: Do not use parenthesis around returned value.
Location:
trunk/Modules/FinanceBankAPI
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/FinanceBankAPI/FileImport.php

    r873 r874  
    8989      $Import->PairOperations();
    9090    }
    91     return ($Output);
     91    return $Output;
    9292  }
    9393
     
    9595  {
    9696    if (!$this->System->User->CheckPermission('Finance', 'SubjectList'))
    97       return ('Nemáte oprávnění');
     97      return 'Nemáte oprávnění';
    9898
    9999    $Output = $this->Import($_GET['i']);
    100     return ($Output);
     100    return $Output;
    101101  }
    102102}
     
    111111  {
    112112    $Output = '';
    113     if (!$this->System->User->CheckPermission('Finance', 'SubjectList')) return ('Nemáte oprávnění');
     113    if (!$this->System->User->CheckPermission('Finance', 'SubjectList')) return 'Nemáte oprávnění';
    114114    if (array_key_exists('Operation', $_GET))
    115115    {
     
    118118      else $Output .= 'Neplatná akce';
    119119    } else $Output .= $this->ShowForm();
    120     return ($Output);
     120    return $Output;
    121121  }
    122122
     
    128128    $Form->Values['BankAccount'] = $_GET['id'];
    129129    $Output = $Form->ShowEditForm();
    130     return ($Output);
     130    return $Output;
    131131  }
    132132
     
    153153    $Output .= $Import->ImportFile($File->GetContent(), $File->GetExt());
    154154
    155     return ($Output);
     155    return $Output;
    156156  }
    157157
     
    187187      $this->System->ModuleManager->Modules['Log']->NewRecord('Finance', 'NewPaymentInserted');
    188188    }
    189     return ($Output);
     189    return $Output;
    190190  }
    191191}
  • trunk/Modules/FinanceBankAPI/FinanceBankAPI.php

    r873 r874  
    7676    $DbRow = $DbResult->fetch_row();
    7777    $Output = 'Nezpárovaných plateb: '.$DbRow['0'].'<br/>';
    78     return ($Output);
     78    return $Output;
    7979  }
    8080
     
    9494      'presetBankAccount' => $Item['BankAccount'],
    9595      'presetGroup' => $FinanceGroup['Id']);
    96     return ($Preset);
     96    return $Preset;
    9797  }
    9898}
     
    112112      $Output .= $Page->Import($DbRow['Id']);
    113113    }
    114     return ($Output);
     114    return $Output;
    115115  }
    116116}
  • trunk/Modules/FinanceBankAPI/Fio.php

    r873 r874  
    5555        if ($GPCLine != NULL) $Result[] = $GPCLine;
    5656      }
    57       return ($Result);
     57      return $Result;
    5858    }
    5959  }
  • trunk/Modules/FinanceBankAPI/FioAPI.php

    r873 r874  
    77function RemoveComma($Text)
    88{
    9   if ((mb_strlen($Text) >= 2) and ($Text[0] == '"') and (mb_substr($Text, -1, 1) == '"')) return (mb_substr($Text, 1, -1));
    10     else return ($Text);
     9  if ((mb_strlen($Text) >= 2) and ($Text[0] == '"') and (mb_substr($Text, -1, 1) == '"')) return mb_substr($Text, 1, -1);
     10    else return $Text;
    1111}
    1212
     
    9797        }
    9898      }
    99       return ($Result);
     99      return $Result;
    100100    }
    101101  }
  • trunk/Modules/FinanceBankAPI/GPC.php

    r873 r874  
    5353    $GPCLine = NULL;
    5454
    55     return ($GPCLine);
     55    return $GPCLine;
    5656  }
    5757}
  • trunk/Modules/FinanceBankAPI/ImportFio.php

    r873 r874  
    4444    $this->Database->update('FinanceBankAccount', 'Id='.$this->BankAccount['Id'],
    4545      array('LastImportDate' => TimeToMysqlDate($PeriodEnd)));
    46     return ($Output);
     46    return $Output;
    4747  }
    4848}
Note: See TracChangeset for help on using the changeset viewer.