Skip to content

Commit f494e1c

Browse files
authored
ENGCOM-5997: Update AbstractForm.php #24853
2 parents 530f5ea + 7ebfb49 commit f494e1c

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

lib/internal/Magento/Framework/Data/Form/AbstractForm.php

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,11 @@ public function __construct(Factory $factoryElement, CollectionFactory $factoryC
6767
* Please override this one instead of overriding real __construct constructor
6868
*
6969
* @return void
70+
* @codingStandardsIgnoreStart
7071
*/
7172
protected function _construct()
7273
{
74+
//@codingStandardsIgnoreEnd
7375
}
7476

7577
/**
@@ -137,14 +139,14 @@ public function addElement(AbstractElement $element, $after = null)
137139
/**
138140
* Add child element
139141
*
140-
* if $after parameter is false - then element adds to end of collection
141-
* if $after parameter is null - then element adds to befin of collection
142-
* if $after parameter is string - then element adds after of the element with some id
142+
* If $after parameter is false - then element adds to end of collection
143+
* If $after parameter is null - then element adds to befin of collection
144+
* If $after parameter is string - then element adds after of the element with some id
143145
*
144-
* @param string $elementId
145-
* @param string $type
146-
* @param array $config
147-
* @param bool|string|null $after
146+
* @param string $elementId
147+
* @param string $type
148+
* @param array $config
149+
* @param bool|string|null $after
148150
* @return AbstractElement
149151
*/
150152
public function addField($elementId, $type, $config, $after = false)

0 commit comments

Comments
 (0)