for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Functions.
*
* Place the functions in alphabetical order by function name.
* - Suggested: declare(strict_types=1);
*/
namespace KEINOS\MyPackageName;
function sayHelloTo(string $name): string
{
return "Hello, ${name}!";
}