Ignore:
Timestamp:
Nov 24, 2020, 10:58:56 AM (3 years ago)
Author:
chronos
Message:
  • Modified: More static types added.
File:
1 edited

Legend:

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

    r887 r888  
    55include('GPC.php');
    66
    7 function RemoveComma($Text)
     7function RemoveComma(string $Text): string
    88{
    99  if ((mb_strlen($Text) >= 2) and ($Text[0] == '"') and (mb_substr($Text, -1, 1) == '"')) return mb_substr($Text, 1, -1);
     
    1313class FioAPI
    1414{
    15   var $Token;
    16   var $Encoding;
    17   var $Format;
     15  public string $Token;
     16  public string $Encoding;
     17  public string $Format;
    1818
    1919  function __construct()
Note: See TracChangeset for help on using the changeset viewer.