Skip to content

Commit 298ba48

Browse files
committed
Merge branch '5.4' into 6.0
* 5.4: [Notifier] Fix typo OneSignal DSN Fix blank space typo [Form] Add missing imports in unmapped fields example
2 parents 95fada5 + 7d6bc78 commit 298ba48

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Configuration Formats
5757
~~~~~~~~~~~~~~~~~~~~~
5858

5959
Unlike other frameworks, Symfony doesn't impose a specific format on you to
60-
configure your applications, but lets you choose between YAML, XML and PHP.
60+
configure your applications, but lets you choose between YAML, XML and PHP.
6161
Throughout the Symfony documentation, all configuration examples will be
6262
shown in these three formats.
6363

forms.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -939,6 +939,8 @@ example to add an *"I agree with these terms"* checkbox), set the ``mapped``
939939
option to ``false`` in those fields::
940940

941941
// ...
942+
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
943+
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
942944
use Symfony\Component\Form\FormBuilderInterface;
943945

944946
class TaskType extends AbstractType

notifier.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The notifier component supports the following channels:
3434
services like Slack and Telegram;
3535
* :ref:`Email channel <notifier-email-channel>` integrates the :doc:`Symfony Mailer </mailer>`;
3636
* Browser channel uses :ref:`flash messages <flash-messages>`.
37-
* Push Channel sends notifications to phones and browsers via push notifications.
37+
* :ref:`Push channel <notifier-push-channel>` sends notifications to phones and browsers via push notifications.
3838

3939
.. tip::
4040

@@ -294,6 +294,8 @@ notification emails:
294294
;
295295
};
296296
297+
.. _notifier-push-channel:
298+
297299
Push Channel
298300
~~~~~~~~~~~~
299301

@@ -312,7 +314,7 @@ integration with these push services:
312314
Service Package DSN
313315
============== ==================================== =================================================================================
314316
Expo ``symfony/expo-notifier`` ``expo://Token@default``
315-
OneSignal ``symfony/one-signal-notifier`` ``onesignal://APP_ID:API_KEY@default?defaultRecipientId=DEFAULT_RECIPIENT_ID''``
317+
OneSignal ``symfony/one-signal-notifier`` ``onesignal://APP_ID:API_KEY@default?defaultRecipientId=DEFAULT_RECIPIENT_ID``
316318
============== ==================================== =================================================================================
317319

318320
To enable a texter, add the correct DSN in your ``.env`` file and

0 commit comments

Comments
 (0)