Skip to content

Commit c5b9857

Browse files
committed
chore: fix variable name
1 parent e0797cd commit c5b9857

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LibraryStarterKit/Task/Builder/UpdateFunding.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ public function build(): void
2222
{
2323
$this->getConsole()->section('Updating .github/FUNDING.yml');
2424

25-
$changelog = $this->getEnvironment()->getTwigEnvironment()->render(
25+
$funding = $this->getEnvironment()->getTwigEnvironment()->render(
2626
'FUNDING.yml.twig',
2727
$this->getAnswers()->getArrayCopy(),
2828
);
2929

3030
$this->getEnvironment()->getFilesystem()->dumpFile(
3131
$this->getEnvironment()->path('.github/FUNDING.yml'),
32-
$changelog,
32+
$funding,
3333
);
3434
}
3535
}

0 commit comments

Comments
 (0)