11.. _zend.code.generator.reference :
22
33Zend\C ode\G enerator Reference
4- ============================
4+ =============================
55
66.. _zend.code.generator.reference.abstracts :
77
@@ -27,7 +27,7 @@ The base interface from which all CodeGenerator classes implement provides the m
2727.. _zend.code.generator.reference.abstracts.abstract :
2828
2929Zend\C ode\G enerator\A bstractGenerator
30- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3131
3232``Zend\Code\Generator\AbstractGenerator `` implements ``Zend\Code\Generator\GeneratorInterface ``, and adds some properties for tracking
3333whether content has changed as well as the amount of indentation that should appear before generated content. Its
@@ -90,7 +90,7 @@ Concrete CodeGenerator Classes
9090.. _zend.code.generator.reference.concrete.body :
9191
9292Zend\C ode\G enerator\B odyGenerator
93- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
93+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9494
9595``Zend\Code\Generator\BodyGenerator `` is intended for generating arbitrary procedural code to include within a file. As
9696such, you simply set content for the object, and it will return that content when you invoke ``generate() ``.
@@ -110,7 +110,7 @@ The *API* of the class is as follows:
110110.. _zend.code.generator.reference.concrete.class :
111111
112112Zend\C ode\G enerator\C lassGenerator
113- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
113+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
114114
115115``Zend\Code\Generator\ClassGenerator `` is intended for generating *PHP * classes. The basic functionality just generates
116116the *PHP * class itself, as well as optionally the related *PHP * DocBlock. Classes may implement or inherit from
@@ -160,7 +160,7 @@ Note that ``setDocBlock()`` expects an instance of ``Zend\Code\Generator\DocBloc
160160.. _zend.code.generator.reference.concrete.docblock :
161161
162162Zend\C ode\G enerator\D ocBlockGenerator
163- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
163+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
164164
165165``Zend\Code\Generator\DocBlockGenerator `` can be used to generate arbitrary *PHP * docblocks, including all the standard
166166docblock features: short and long descriptions and annotation tags.
@@ -313,7 +313,7 @@ The *API* of the class is as follows:
313313.. _zend.code.generator.reference.concrete.member-container :
314314
315315Zend\C ode\G enerator\M ember\C ontainerGenerator
316- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
316+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
317317
318318``Zend\Code\Generator\Member\ContainerGenerator `` is used internally by ``Zend\Code\Generator\ClassGenerator `` to keep track of
319319class members -- properties and methods alike. These are indexed by name, using the concrete instances of the
@@ -332,7 +332,7 @@ The *API* of the class is as follows:
332332.. _zend.code.generator.reference.concrete.method :
333333
334334Zend\C ode\G enerator\M ethodGenerator
335- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
335+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
336336
337337``Zend\Code\Generator\MethodGenerator `` describes a class method, and can generate both the code and the docblock for the
338338method. The visibility and status as static, abstract, or final may be indicated, per its parent class,
@@ -368,7 +368,7 @@ The *API* of the class is as follows:
368368.. _zend.code.generator.reference.concrete.parameter :
369369
370370Zend\C ode\G enerator\P arameterGenerator
371- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
371+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
372372
373373``Zend\Code\Generator\ParameterGenerator `` may be used to specify method parameters. Each parameter may have a position
374374(if unspecified, the order in which they are registered with the method will be used), a default value, and a data
0 commit comments