Skip to content

Commit 3cfd75a

Browse files
committed
make string trim methods private
1 parent 68fc41c commit 3cfd75a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SapRfcFunction.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ protected function getFunction()
9090
* @param mixed $return
9191
* @return mixed
9292
*/
93-
protected function trimStrings($return)
93+
private function trimStrings($return)
9494
{
9595
if (is_string($return)) {
9696
return $this->rTrim($return);
@@ -108,7 +108,7 @@ protected function trimStrings($return)
108108
* @param string $string
109109
* @return string
110110
*/
111-
protected function rTrim($string)
111+
private function rTrim($string)
112112
{
113113
/**
114114
* Do not trim strings containing non-printable characters.

0 commit comments

Comments
 (0)