Skip to content

Commit dfb06cc

Browse files
committed
naming
1 parent 0d78388 commit dfb06cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Php/ComposerPhpVersionFactory.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function __construct(
3939
{
4040
}
4141

42-
private function initVersions(): void
42+
private function initializeVersions(): void
4343
{
4444
$this->initialized = true;
4545

@@ -93,7 +93,7 @@ public function getMinVersion(): ?PhpVersion
9393
}
9494

9595
if ($this->initialized === false) {
96-
$this->initVersions();
96+
$this->initializeVersions();
9797
}
9898

9999
return $this->minVersion;
@@ -106,7 +106,7 @@ public function getMaxVersion(): ?PhpVersion
106106
}
107107

108108
if ($this->initialized === false) {
109-
$this->initVersions();
109+
$this->initializeVersions();
110110
}
111111

112112
return $this->maxVersion;

0 commit comments

Comments
 (0)