Skip to content

Commit

Permalink
fix(): styleci
Browse files Browse the repository at this point in the history
  • Loading branch information
Magicalex committed Nov 22, 2019
1 parent c73ee6d commit f90790a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Rtorrent.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ public function call($method, $params = [])

$xmlrpc_options = [
'output_type' => 'xml',
'verbosity' => 'no_white_space',
'version' => 'xmlrpc',
'encoding' => 'UTF-8'
'verbosity' => 'no_white_space',
'version' => 'xmlrpc',
'encoding' => 'UTF-8'
];

$null = "\x00";
Expand All @@ -44,6 +44,6 @@ public function call($method, $params = [])

protected function prefix()
{
return ($this->port == -1) ? 'unix://':'tcp://';
return ($this->port == -1) ? 'unix://' : 'tcp://';
}
}

0 comments on commit f90790a

Please sign in to comment.