We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 735ce80 commit ba36ec1Copy full SHA for ba36ec1
src/Definition/Source/DefinitionGlob.php
@@ -28,12 +28,12 @@ public function __construct(
28
) {
29
}
30
31
- public function setAutowiring(Autowiring $autowiring): void
+ public function setAutowiring(Autowiring $autowiring) : void
32
{
33
$this->autowiring = $autowiring;
34
35
36
- public function getDefinition(string $name): Definition|null
+ public function getDefinition(string $name) : Definition|null
37
38
$this->initialize();
39
@@ -50,7 +50,7 @@ public function getDefinitions() : array
50
/**
51
* Lazy-loading of the definitions.
52
*/
53
- private function initialize(): void
+ private function initialize() : void
54
55
if ($this->initialized === true) {
56
return;
0 commit comments