Skip to content

Commit 1c51901

Browse files
farhadhfjaviereguiluz
authored andcommitted
[Mailer] feat(mailer): Add AhaSend Mailer doc
1 parent ddb2451 commit 1c51901

File tree

187 files changed

+4032
-3028
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+4032
-3028
lines changed

.doctor-rst.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ rules:
2323
forbidden_directives:
2424
directives:
2525
- '.. index::'
26+
- directive: '.. caution::'
27+
replacements: ['.. warning::', '.. danger::']
2628
indention: ~
2729
lowercase_as_in_use_statements: ~
2830
max_blank_lines:
@@ -46,6 +48,7 @@ rules:
4648
no_namespace_after_use_statements: ~
4749
no_php_open_tag_in_code_block_php_directive: ~
4850
no_space_before_self_xml_closing_tag: ~
51+
non_static_phpunit_assertions: ~
4952
only_backslashes_in_namespace_in_php_code_block: ~
5053
only_backslashes_in_use_statements_in_php_code_block: ~
5154
ordered_use_statements: ~
@@ -99,7 +102,6 @@ whitelist:
99102
- '#. The most important config file is ``app/config/services.yml``, which now is'
100103
- 'The bin/console Command'
101104
- '.. _`LDAP injection`: http://projects.webappsec.org/w/page/13246947/LDAP%20Injection'
102-
- '.. versionadded:: 2.7.2' # Doctrine
103105
- '.. versionadded:: 2.8.0' # Doctrine
104106
- '.. versionadded:: 1.9.0' # Encore
105107
- '.. versionadded:: 1.18' # Flex in setup/upgrade_minor.rst

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
key: ${{ runner.os }}-doctor-rst-${{ steps.extract_base_branch.outputs.branch }}
7474

7575
- name: "Run DOCtor-RST"
76-
uses: docker://oskarstark/doctor-rst:1.62.3
76+
uses: docker://oskarstark/doctor-rst:1.64.0
7777
with:
7878
args: --short --error-format=github --cache-file=/github/workspace/.cache/doctor-rst.cache
7979

_build/redirection_map

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,8 +525,7 @@
525525
/testing/functional_tests_assertions /testing#testing-application-assertions
526526
/components https://symfony.com/components
527527
/components/index https://symfony.com/components
528-
/serializer/normalizers /components/serializer#normalizers
529-
/components/serializer#component-serializer-attributes-groups-annotations /components/serializer#component-serializer-attributes-groups-attributes
528+
/serializer/normalizers /serializer#serializer-built-in-normalizers
530529
/logging/monolog_regex_based_excludes /logging/monolog_exclude_http_codes
531530
/security/named_encoders /security/named_hashers
532531
/components/inflector /string#inflector
@@ -572,3 +571,5 @@
572571
/doctrine/registration_form /security#security-make-registration-form
573572
/form/form_dependencies /form/create_custom_field_type
574573
/doctrine/reverse_engineering /doctrine#doctrine-adding-mapping
574+
/components/serializer /serializer
575+
/serializer/custom_encoder /serializer/encoders#serializer-custom-encoder

bundles.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The Bundle System
44
=================
55

6-
.. caution::
6+
.. warning::
77

88
In Symfony versions prior to 4.0, it was recommended to organize your own
99
application code using bundles. This is :ref:`no longer recommended <best-practice-no-application-bundles>` and bundles
@@ -58,7 +58,7 @@ Start by creating a new class called ``AcmeBlogBundle``::
5858
{
5959
}
6060

61-
.. caution::
61+
.. warning::
6262

6363
If your bundle must be compatible with previous Symfony versions you have to
6464
extend from the :class:`Symfony\\Component\\HttpKernel\\Bundle\\Bundle` instead.
@@ -118,7 +118,7 @@ to be adjusted if needed:
118118

119119
.. _bundles-legacy-directory-structure:
120120

121-
.. caution::
121+
.. warning::
122122

123123
The recommended bundle structure was changed in Symfony 5, read the
124124
`Symfony 4.4 bundle documentation`_ for information about the old

bundles/best_practices.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ with Symfony Flex to install a specific Symfony version:
246246
# recommended to have a better output and faster download time)
247247
composer update --prefer-dist --no-progress
248248
249-
.. caution::
249+
.. warning::
250250

251251
If you want to cache your Composer dependencies, **do not** cache the
252252
``vendor/`` directory as this has side-effects. Instead cache

bundles/extension.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ Patterns are transformed into the actual class namespaces using the classmap
200200
generated by Composer. Therefore, before using these patterns, you must generate
201201
the full classmap executing the ``dump-autoload`` command of Composer.
202202

203-
.. caution::
203+
.. warning::
204204

205205
This technique can't be used when the classes to compile use the ``__DIR__``
206206
or ``__FILE__`` constants, because their values will change when loading

bundles/override.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ For example, to override the ``templates/registration/confirmed.html.twig``
1919
template from the AcmeUserBundle, create this template:
2020
``<your-project>/templates/bundles/AcmeUserBundle/registration/confirmed.html.twig``
2121

22-
.. caution::
22+
.. warning::
2323

2424
If you add a template in a new location, you *may* need to clear your
2525
cache (``php bin/console cache:clear``), even if you are in debug mode.

cache.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ Then, register the ``SodiumMarshaller`` service using this key:
829829
//->addArgument(['env(base64:CACHE_DECRYPTION_KEY)', 'env(base64:OLD_CACHE_DECRYPTION_KEY)'])
830830
->addArgument(new Reference('.inner'));
831831
832-
.. caution::
832+
.. danger::
833833

834834
This will encrypt the values of the cache items, but not the cache keys. Be
835835
careful not to leak sensitive data in the keys.

0 commit comments

Comments
 (0)