Skip to content

Commit

Permalink
fix: change visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Staormin committed Nov 4, 2024
1 parent b399d33 commit 5a0bc8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Command/MergeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function __construct(
/**
* @param array<int, array<int>> $numbers
*/
public function getBaseTallImage(array $numbers): GdImage
private function getBaseTallImage(array $numbers): GdImage
{
$outputWidth = $this->widthOfOneImage * 6 + $this->mergePadding;
$outputHeight = count($numbers) * $this->heightOfOneImage + $this->mergePadding;
Expand All @@ -76,7 +76,7 @@ public function getBaseTallImage(array $numbers): GdImage
* @param array<int, array<int>> $numbers
* @return array{0: int, 1: GdImage}
*/
public function getBaseWideImage(array $numbers): array
private function getBaseWideImage(array $numbers): array
{
$heightOfOneImage = $this->segmentLength * 4;
$widthOfOneImage = $this->segmentLength * 2;
Expand Down

0 comments on commit 5a0bc8d

Please sign in to comment.