Skip to content

Commit

Permalink
php8-mod: csfix
Browse files Browse the repository at this point in the history
  • Loading branch information
partikus committed Jan 10, 2024
1 parent 796ed99 commit 74d3c84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Definition/Source/DefinitionGlob.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ public function __construct(
) {
}

public function setAutowiring(Autowiring $autowiring): void
public function setAutowiring(Autowiring $autowiring) : void
{
$this->autowiring = $autowiring;
}

public function getDefinition(string $name): Definition|null
public function getDefinition(string $name) : Definition|null
{
$this->initialize();

Expand All @@ -50,7 +50,7 @@ public function getDefinitions() : array
/**
* Lazy-loading of the definitions.
*/
private function initialize(): void
private function initialize() : void
{
if ($this->initialized === true) {
return;
Expand Down

0 comments on commit 74d3c84

Please sign in to comment.