mirror of
https://github.com/pestphp/pest.git
synced 2026-03-12 10:47:25 +01:00
fix: support message
This commit is contained in:
@ -59,6 +59,15 @@ final class Thanks
|
|||||||
);
|
);
|
||||||
|
|
||||||
View::render('components.new-line');
|
View::render('components.new-line');
|
||||||
|
|
||||||
|
foreach (self::FUNDING_MESSAGES as $message => $link) {
|
||||||
|
View::render('components.two-column-detail', [
|
||||||
|
'left' => $message,
|
||||||
|
'right' => $link,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
View::render('components.new-line');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($wantsToSupport === true) {
|
if ($wantsToSupport === true) {
|
||||||
@ -72,16 +81,5 @@ final class Thanks
|
|||||||
exec('xdg-open https://github.com/pestphp/pest');
|
exec('xdg-open https://github.com/pestphp/pest');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
View::render('components.new-line');
|
|
||||||
|
|
||||||
foreach (self::FUNDING_MESSAGES as $message => $link) {
|
|
||||||
View::render('components.two-column-detail', [
|
|
||||||
'left' => $message,
|
|
||||||
'right' => $link,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
View::render('components.new-line');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user