for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace WebServCo\Framework\Helpers;
final class PhpHelper
{
/**
* Checks if interface type is CLI.
*/
public static function isCli(): bool
return 'cli' === \PHP_SAPI;
}