Ignore:
Timestamp:
Apr 6, 2020, 11:56:19 PM (4 years ago)
Author:
chronos
Message:
  • Modified: Do not use parenthesis around returned value.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Packages/Common/Config.php

    r873 r874  
    1919      $Data = &$Data[$Item];
    2020    }
    21     return ($Data[$Last]);
     21    return $Data[$Last];
    2222  }
    2323
     
    5252  function GetAsArray()
    5353  {
    54     return ($this->Data);
     54    return $this->Data;
    5555  }
    5656}
Note: See TracChangeset for help on using the changeset viewer.