for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpGitHooks\Module\Git\Contract\Response;
final class GoodJobLogoResponse
{
/**
* @param string $message
*
* @return string
*/
public static function paint($message)
return sprintf("<fg=yellow;options=bold;>
@@@@@@@@@@@@@@@
@@@@ @@@@@@@@@@@@@@@@@@@
@ @ @@@@@@@@@@@@@@@@@@@@@@@
@ @ @@@@@@@@ @@@ @@@@@@@@@
@ @ @@@@@@@@@ @@@ @@@@@@@@@@
@ @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ @ @@ @@@@@@@@@@@@@ @@@@@@@@
@@ @ @@@ @@@@@@@@@@@ @@@@@@@@@
@@ @@@@@@@@ @@@@ @@@@@@@@@ @@@@@@@@@@
@ @ @@@@ @@@@@@@@@@
@@ @ @@@@@@@@@@@@@@@@@@@@@@@@
@ @@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@
@@ @ @@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@
</fg=yellow;options=bold;>\n
<fg=white;bg=yellow;options=bold;> %s </fg=white;bg=yellow;options=bold;>", $message);
}