Skip to content

Commit 50dcd93

Browse files
Add return types, round 1
1 parent d166bb7 commit 50dcd93

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Debug/OptionsResolverIntrospector.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,9 @@ public function __construct(OptionsResolver $optionsResolver)
4141
}
4242

4343
/**
44-
* @return mixed
45-
*
4644
* @throws NoConfigurationException on no configured value
4745
*/
48-
public function getDefault(string $option)
46+
public function getDefault(string $option): mixed
4947
{
5048
return ($this->get)('defaults', $option, sprintf('No default value was set for the "%s" option.', $option));
5149
}

0 commit comments

Comments
 (0)