for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Covert\Utils;
class OperatingSystem
{
/**
* Returns true if the operating system is Windows.
*
* @return bool
*/
public static function isWindows(): bool
return substr(strtoupper(PHP_OS), 0, 3) === 'WIN';
}