Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 0024f1a

Browse files
Merge pull request zendframework#1103 in develop
2 parents 686ea27 + e07e314 commit 0024f1a

19 files changed

+35
-35
lines changed

‎docs/languages/en/index.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ Zend\\Tag
770770
.. _zend.test:
771771

772772
Zend\\Test
773-
^^^^^^^^^
773+
^^^^^^^^^^
774774

775775
* :doc:`modules/zend.test.introduction`
776776
* :doc:`modules/zend.test.phpunit`

‎docs/languages/en/modules/zend.cache.pattern.capture-cache.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _zend.cache.pattern.capture-cache:
22

33
Zend\\Cache\\Pattern\\CaptureCache
4-
=================================
4+
==================================
55

66
.. _zend.cache.pattern.capture-cache.overview:
77

‎docs/languages/en/modules/zend.captcha.adapters.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The following adapters are shipped with Zend Framework by default.
88
.. _zend.captcha.adapters.abstractword:
99

1010
Zend\\Captcha\\AbstractWord
11-
-------------------
11+
---------------------------
1212

1313
``Zend\Captcha\AbstractWord`` is an abstract adapter that serves as the base class for most other *CAPTCHA* adapters. It
1414
provides mutators for specifying word length, session *TTL* and the session container object to use.

‎docs/languages/en/modules/zend.code.generator.examples.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _zend.code.generator.examples:
22

33
Zend\Code\Generator Examples
4-
===========================
4+
============================
55

66
.. _zend.code.generator.examples.class:
77

‎docs/languages/en/modules/zend.code.generator.reference.rst‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _zend.code.generator.reference:
22

33
Zend\Code\Generator 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

2929
Zend\Code\Generator\AbstractGenerator
30-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3131

3232
``Zend\Code\Generator\AbstractGenerator`` implements ``Zend\Code\Generator\GeneratorInterface``, and adds some properties for tracking
3333
whether 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

9292
Zend\Code\Generator\BodyGenerator
93-
^^^^^^^^^^^^^^^^^^^^^^^^^^^
93+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9494

9595
``Zend\Code\Generator\BodyGenerator`` is intended for generating arbitrary procedural code to include within a file. As
9696
such, 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

112112
Zend\Code\Generator\ClassGenerator
113-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
113+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
114114

115115
``Zend\Code\Generator\ClassGenerator`` is intended for generating *PHP* classes. The basic functionality just generates
116116
the *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

162162
Zend\Code\Generator\DocBlockGenerator
163-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
163+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
164164

165165
``Zend\Code\Generator\DocBlockGenerator`` can be used to generate arbitrary *PHP* docblocks, including all the standard
166166
docblock 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

315315
Zend\Code\Generator\Member\ContainerGenerator
316-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
316+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
317317

318318
``Zend\Code\Generator\Member\ContainerGenerator`` is used internally by ``Zend\Code\Generator\ClassGenerator`` to keep track of
319319
class 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

334334
Zend\Code\Generator\MethodGenerator
335-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
335+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
336336

337337
``Zend\Code\Generator\MethodGenerator`` describes a class method, and can generate both the code and the docblock for the
338338
method. 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

370370
Zend\Code\Generator\ParameterGenerator
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

‎docs/languages/en/modules/zend.db.result-set.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The following is an example workflow similar to what one might find inside
5656
.. _zend.db.result-set.result-set:
5757

5858
Zend\\Db\\ResultSet\\ResultSet and Zend\\Db\\ResultSet\\AbstractResultSet
59-
---------------------------------------
59+
-------------------------------------------------------------------------
6060

6161
For most purposes, either a instance of ``Zend\Db\ResultSet\ResultSet`` or a
6262
derivative of ``Zend\Db\ResultSet\AbstractResultSet`` will be being used. The implementation of

‎docs/languages/en/modules/zend.feed.pubsubhubbub.rst‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _zend.feed.pubsubhubbub.introduction:
22

33
Zend\\Feed\\PubSubHubbub
4-
======================
4+
========================
55

66
``Zend\Feed\PubSubHubbub`` is an implementation of the PubSubHubbub Core 0.2 Specification (Working Draft). It
77
offers implementations of a Pubsubhubbub Publisher and Subscriber suited to Zend Framework and other *PHP*
@@ -133,7 +133,7 @@ tolerance for failures both in terms of their own temporary downtime or Publishe
133133
.. _zend.feed.pubsubhubbub.zend.feed.pubsubhubbub.subscriber:
134134

135135
Zend\\Feed\\PubSubHubbub\\Subscriber
136-
---------------------------------
136+
------------------------------------
137137

138138
In Pubsubhubbub, the Subscriber is the party who wishes to receive updates to any Topic (*RSS* or Atom feed). They
139139
achieve this by subscribing to one or more of the Hubs advertised by that Topic, usually as a set of one or more

‎docs/languages/en/modules/zend.i18n.validator.float.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ validates also localized input.
99
.. _zend.i18n.validator.float.options:
1010

1111
Supported options for Zend\\I18n\\Validator\\Float
12-
--------------------------------------------
12+
--------------------------------------------------
1313

1414
The following options are supported for ``Zend\I18n\Validator\Float``:
1515

‎docs/languages/en/modules/zend.i18n.validator.int.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ can be validated.
99
.. _zend.validator.set.int.options:
1010

1111
Supported options for Zend\\I18n\\Validator\\Int
12-
------------------------------------------
12+
------------------------------------------------
1313

1414
The following options are supported for ``Zend\I18n\Validator\Int``:
1515

‎docs/languages/en/modules/zend.i18n.validators.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _zend.i18n.validators:
22

33
I18n Validators
4-
============
4+
===============
55

66
Zend Framework comes with a set of validators related to Internationalization.
77

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /