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/Modules/NetworkConfigRouterOS/RouterboardAPI.php

    r873 r874  
    4040    } else if ($Length >= 0x10000000)
    4141      $Length = chr(0xF0).chr(($Length >> 24) & 0xFF).chr(($Length >> 16) & 0xFF).chr(($Length >> 8) & 0xFF).chr($Length & 0xFF);
    42     return ($Length);
     42    return $Length;
    4343  }
    4444
     
    7171      sleep($this->Delay);
    7272    }
    73     return ($this->Connected);
     73    return $this->Connected;
    7474  }
    7575
     
    234234      $this->Write($el, $Last);
    235235    }
    236     return ($this->Read());
     236    return $this->Read();
    237237  }
    238238}
Note: See TracChangeset for help on using the changeset viewer.