Skip to content

Commit bbb3e3e

Browse files
committed
minor #20739 [Notifier] Error: Undefined Variable $texter (cadot-eu)
This PR was merged into the 7.2 branch. Discussion ---------- [Notifier] Error: Undefined Variable $texter The variable $texter is not defined inside the method, so PHP will throw an "Undefined variable" error. <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `7.x` for features of unreleased versions). --> Commits ------- 16a9235 Error: Undefined Variable $texter
2 parents 44687d8 + 16a9235 commit bbb3e3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notifier.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ Now you can send notifications to your desktop as follows::
759759
sprintf('%s is a new subscriber', $user->getFullName())
760760
);
761761

762-
$texter->send($message);
762+
$this->texter->send($message);
763763
}
764764
}
765765

0 commit comments

Comments
 (0)