8000 [Config] added some phpdocs · s7ntech/symfony@b3345c9 · GitHub
[go: up one dir, main page]

Skip to content

Commit b3345c9

Browse files
committed
[Config] added some phpdocs
1 parent 855319a commit b3345c9

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,13 @@ public function canBeUnset($allow = true)
209209
return $this;
210210
}
211211

212+
/**
213+
* Adds an "enabled" boolean to enable the current section.
214+
*
215+
* By default, the section is disabled.
216+
*
217+
* @return ArrayNodeDefinition
218+
*/
212219
public function canBeEnabled()
213220
{
214221
$this
@@ -223,6 +230,13 @@ public function canBeEnabled()
223230
return $this;
224231
}
225232

233+
/**
234+
* Adds an "enabled" boolean to enable the current section.
235+
*
236+
* By default, the section is enabled.
237+
*
238+
* @return ArrayNodeDefinition
239+
*/
226240
public function canBeDisabled()
227241
{
228242
$this

0 commit comments

Comments
 (0)
0