We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0797cd commit c5b9857Copy full SHA for c5b9857
src/LibraryStarterKit/Task/Builder/UpdateFunding.php
@@ -22,14 +22,14 @@ public function build(): void
22
{
23
$this->getConsole()->section('Updating .github/FUNDING.yml');
24
25
- $changelog = $this->getEnvironment()->getTwigEnvironment()->render(
+ $funding = $this->getEnvironment()->getTwigEnvironment()->render(
26
'FUNDING.yml.twig',
27
$this->getAnswers()->getArrayCopy(),
28
);
29
30
$this->getEnvironment()->getFilesystem()->dumpFile(
31
$this->getEnvironment()->path('.github/FUNDING.yml'),
32
- $changelog,
+ $funding,
33
34
}
35
0 commit comments