for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Moka\Stub\Helper;
use Moka\Exception\InvalidArgumentException;
/**
* @param string $name
* @return bool
*
* @throws InvalidArgumentException
*/
function isStaticName(string $name): bool
{
return isName(
$name,
'static',
$name
);
}