Skip to content

Commit d7cfe77

Browse files
Docblock fixes
1 parent 32835af commit d7cfe77

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Options.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public function get($option)
244244
*
245245
* @param string $option The option name.
246246
*
247-
* @return bool Whether the option exists.
247+
* @return bool Whether the option exists.
248248
*/
249249
public function has($option)
250250
{
@@ -324,7 +324,7 @@ public function all()
324324
*
325325
* @param string $option The option name.
326326
*
327-
* @return bool Whether the option exists.
327+
* @return bool Whether the option exists.
328328
*
329329
* @see \ArrayAccess::offsetExists()
330330
*/

OptionsResolverInterface.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ public function setRequired(array $optionNames);
9797
* @return OptionsResolverInterface The resolver instance.
9898
*
9999
* @throws Exception\InvalidOptionsException If an option has not been defined
100-
* (see {@link isKnown()}) for which
101-
* an allowed value is set.
100+
* (see {@link isKnown()}) for which
101+
* an allowed value is set.
102102
*/
103103
public function setAllowedValues(array $allowedValues);
104104

@@ -114,8 +114,8 @@ public function setAllowedValues(array $allowedValues);
114114
* @return OptionsResolverInterface The resolver instance.
115115
*
116116
* @throws Exception\InvalidOptionsException If an option has not been defined
117-
* (see {@link isKnown()}) for which
118-
* an allowed value is set.
117+
* (see {@link isKnown()}) for which
118+
* an allowed value is set.
119119
*/
120120
public function addAllowedValues(array $allowedValues);
121121

@@ -175,7 +175,7 @@ public function setNormalizers(array $normalizers);
175175
*
176176
* @param string $option The name of the option.
177177
*
178-
* @return bool Whether the option is known.
178+
* @return bool Whether the option is known.
179179
*/
180180
public function isKnown($option);
181181

@@ -188,7 +188,7 @@ public function isKnown($option);
188188
*
189189
* @param string $option The name of the option.
190190
*
191-
* @return bool Whether the option is required.
191+
* @return bool Whether the option is required.
192192
*/
193193
public function isRequired($option);
194194

0 commit comments

Comments
 (0)