@@ -49,8 +49,8 @@ Here are some valid bundle namespaces and class names:
49
49
========================== ==================
50
50
Namespace Bundle Class Name
51
51
========================== ==================
52
- ``Acme\Bundle\BlogBundle `` `` AcmeBlogBundle ``
53
- ``Acme\BlogBundle `` `` AcmeBlogBundle ``
52
+ ``Acme\Bundle\BlogBundle `` AcmeBlogBundle
53
+ ``Acme\BlogBundle `` AcmeBlogBundle
54
54
========================== ==================
55
55
56
56
By convention, the ``getName() `` method of the bundle class should return the
@@ -59,8 +59,7 @@ class name.
59
59
.. note ::
60
60
61
61
If you share your bundle publicly, you must use the bundle class name as
62
- the name of the repository (``AcmeBlogBundle `` and not ``BlogBundle ``
63
- for instance).
62
+ the name of the repository (AcmeBlogBundle and not BlogBundle for instance).
64
63
65
64
.. note ::
66
65
@@ -69,14 +68,14 @@ class name.
69
68
:class: `Symfony\\ Bundle\\ FrameworkBundle\\ FrameworkBundle `.
70
69
71
70
Each bundle has an alias, which is the lower-cased short version of the bundle
72
- name using underscores (``acme_blog `` for `` AcmeBlogBundle `` ). This alias
71
+ name using underscores (``acme_blog `` for AcmeBlogBundle). This alias
73
72
is used to enforce uniqueness within a project and for defining bundle's
74
73
configuration options (see below for some usage examples).
75
74
76
75
Directory Structure
77
76
-------------------
78
77
79
- The basic directory structure of an `` AcmeBlogBundle `` must read as follows:
78
+ The basic directory structure of an AcmeBlogBundle must read as follows:
80
79
81
80
.. code-block :: text
82
81
@@ -403,8 +402,8 @@ The ``composer.json`` file should include at least the following metadata:
403
402
Consists of the vendor and the short bundle name. If you are releasing the
404
403
bundle on your own instead of on behalf of a company, use your personal name
405
404
(e.g. ``johnsmith/blog-bundle ``). Exclude the vendor name from the bundle
406
- short name and separate each word with an hyphen. For example: `` AcmeBlogBundle ``
407
- is transformed into ``blog-bundle `` and `` AcmeSocialConnectBundle `` is
405
+ short name and separate each word with an hyphen. For example: AcmeBlogBundle
406
+ is transformed into ``blog-bundle `` and AcmeSocialConnectBundle is
408
407
transformed into ``social-connect-bundle ``.
409
408
410
409
``description ``
0 commit comments