Skip to content

Commit 23cc336

Browse files
committed
fixed types in phpdocs
1 parent 5b27d3e commit 23cc336

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Options.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class Options implements \ArrayAccess, \Iterator, \Countable
5252
* process. If any option is changed after being read, all evaluated
5353
* lazy options that depend on this option would become invalid.
5454
*
55-
* @var Boolean
55+
* @var bool
5656
*/
5757
private $reading = false;
5858

@@ -244,7 +244,7 @@ public function get($option)
244244
*
245245
* @param string $option The option name.
246246
*
247-
* @return Boolean 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 Boolean Whether the option exists.
327+
* @return bool Whether the option exists.
328328
*
329329
* @see \ArrayAccess::offsetExists()
330330
*/

OptionsResolverInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public function setNormalizers(array $normalizers);
175175
*
176176
* @param string $option The name of the option.
177177
*
178-
* @return Boolean 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 Boolean 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)