Skip to content

Commit

Permalink
make string trim methods private
Browse files Browse the repository at this point in the history
  • Loading branch information
gregor-j committed Jan 24, 2019
1 parent 68fc41c commit 3cfd75a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SapRfcFunction.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ protected function getFunction()
* @param mixed $return
* @return mixed
*/
protected function trimStrings($return)
private function trimStrings($return)
{
if (is_string($return)) {
return $this->rTrim($return);
Expand All @@ -108,7 +108,7 @@ protected function trimStrings($return)
* @param string $string
* @return string
*/
protected function rTrim($string)
private function rTrim($string)
{
/**
* Do not trim strings containing non-printable characters.
Expand Down

0 comments on commit 3cfd75a

Please sign in to comment.