mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Code cleanup
This commit is contained in:
@@ -144,7 +144,7 @@ class ActionExpression
|
||||
{
|
||||
$result = $this->expressionLanguage->evaluate($expr, $journal);
|
||||
|
||||
return (string)$result;
|
||||
return (string) $result;
|
||||
}
|
||||
|
||||
public function evaluate(array $journal): string
|
||||
|
@@ -36,7 +36,7 @@ class ActionExpressionLanguageProvider implements ExpressionFunctionProviderInte
|
||||
{
|
||||
$function = function ($arguments, $str): string {
|
||||
if (!is_string($str)) {
|
||||
return (string)$str;
|
||||
return (string) $str;
|
||||
}
|
||||
|
||||
return strtolower($str.'!');
|
||||
|
Reference in New Issue
Block a user