mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-16 22:58:09 +00:00
Remove unnecessary backslash
This commit is contained in:
@@ -78,9 +78,9 @@ final class NotesEnd extends AbstractTrigger implements TriggerInterface
|
||||
if (null !== $note) {
|
||||
$text = strtolower($note->text);
|
||||
}
|
||||
$notesLength = \strlen($text);
|
||||
$notesLength = strlen($text);
|
||||
$search = strtolower($this->triggerValue);
|
||||
$searchLength = \strlen($search);
|
||||
$searchLength = strlen($search);
|
||||
|
||||
// if the string to search for is longer than the description,
|
||||
// return false
|
||||
|
||||
Reference in New Issue
Block a user