Skip to content

Commit d5ce40b

Browse files
committed
fixed CS
1 parent cf3ef09 commit d5ce40b

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

FormConfigBuilderInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,10 +257,10 @@ public function setRequestHandler(RequestHandlerInterface $requestHandler);
257257
*
258258
* Should be set to true only for root forms.
259259
*
260-
* @param bool $initialize True to initialize the form automatically,
260+
* @param bool $initialize true to initialize the form automatically,
261261
* false to suppress automatic initialization.
262262
* In the second case, you need to call
263-
* {@link FormInterface::initialize()} manually.
263+
* {@link FormInterface::initialize()} manually
264264
*
265265
* @return $this The configuration object
266266
*/

FormInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ public function getData();
127127
/**
128128
* Returns the normalized data of the field.
129129
*
130-
* @return mixed When the field is not submitted, the default data is returned.
130+
* @return mixed when the field is not submitted, the default data is returned.
131131
* When the field is submitted, the normalized submitted data is
132-
* returned if the field is valid, null otherwise.
132+
* returned if the field is valid, null otherwise
133133
*/
134134
public function getNormData();
135135

FormRendererEngineInterface.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ public function setTheme(FormView $view, $themes);
3636
* The type of the resource is decided by the implementation. The resource
3737
* is later passed to {@link renderBlock()} by the rendering algorithm.
3838
*
39-
* @param FormView $view The view for determining the used themes.
39+
* @param FormView $view the view for determining the used themes.
4040
* First the themes attached directly to the
4141
* view with {@link setTheme()} are considered,
42-
* then the ones of its parent etc.
42+
* then the ones of its parent etc
4343
* @param string $blockName The name of the block to render
4444
*
4545
* @return mixed the renderer resource or false, if none was found
@@ -68,10 +68,10 @@ public function getResourceForBlockName(FormView $view, $blockName);
6868
* The type of the resource is decided by the implementation. The resource
6969
* is later passed to {@link renderBlock()} by the rendering algorithm.
7070
*
71-
* @param FormView $view The view for determining the used themes.
71+
* @param FormView $view the view for determining the used themes.
7272
* First the themes attached directly to
7373
* the view with {@link setTheme()} are
74-
* considered, then the ones of its parent etc.
74+
* considered, then the ones of its parent etc
7575
* @param array $blockNameHierarchy The block name hierarchy, with the root block
7676
* at the beginning
7777
* @param int $hierarchyLevel The level in the hierarchy at which to start
@@ -106,10 +106,10 @@ public function getResourceForBlockNameHierarchy(FormView $view, array $blockNam
106106
* The type of the resource is decided by the implementation. The resource
107107
* is later passed to {@link renderBlock()} by the rendering algorithm.
108108
*
109-
* @param FormView $view The view for determining the used themes.
109+
* @param FormView $view the view for determining the used themes.
110110
* First the themes attached directly to
111111
* the view with {@link setTheme()} are
112-
* considered, then the ones of its parent etc.
112+
* considered, then the ones of its parent etc
113113
* @param array $blockNameHierarchy The block name hierarchy, with the root block
114114
* at the beginning
115115
* @param int $hierarchyLevel The level in the hierarchy at which to start

Util/OrderedHashMapIterator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ class OrderedHashMapIterator implements \Iterator
6262
* keys
6363
* @param array $orderedKeys The keys of the map in the order in which
6464
* they should be iterated
65-
* @param array $managedCursors An array from which to reference the
65+
* @param array $managedCursors an array from which to reference the
6666
* iterator's cursor as long as it is alive.
6767
* This array is managed by the corresponding
6868
* {@link OrderedHashMap} instance to support
69-
* recognizing the deletion of elements.
69+
* recognizing the deletion of elements
7070
*/
7171
public function __construct(array &$elements, array &$orderedKeys, array &$managedCursors)
7272
{

0 commit comments

Comments
 (0)