Remove trailing whitespace in legacy class files

This commit is contained in:
Kijin Sung 2023-01-17 21:07:55 +09:00
parent 8a6039b829
commit c881e73c1d
29 changed files with 481 additions and 483 deletions

View file

@ -44,7 +44,7 @@ class BaseObject
{
$this->setError($error);
$this->setMessage($message);
if ($error)
{
$backtrace = debug_backtrace(false);
@ -58,10 +58,10 @@ class BaseObject
$this->add('rx_error_location', $location);
}
}
/**
* Set state for var_export()
*
*
* @param array $vars
* @return object
*/
@ -94,7 +94,7 @@ class BaseObject
{
$this->error = -1;
}
// Convert the error message into the correct language and interpolate any other variables into it.
if(count($args))
{
@ -104,7 +104,7 @@ class BaseObject
$this->message = vsprintf($this->message, $args);
}
}
return $this;
}