fobe-web/globals/Dependencies/Common/System.php

11 lines
174 B
PHP

<?php
namespace Fobe\Common {
class System
{
public static function IsCommandLine()
{
return php_sapi_name() === 'cli';
}
}
}