You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
685 B
37 lines
685 B
<?php
|
|
|
|
/**
|
|
* Common Functions for testing
|
|
*
|
|
* Several application-wide utility methods.
|
|
*
|
|
* @package CodeIgniter
|
|
* @category Common Functions
|
|
*/
|
|
|
|
if (! function_exists('is_cli'))
|
|
{
|
|
/**
|
|
* Is CLI?
|
|
*
|
|
* Test to see if a request was made from the command line.
|
|
* You can set the return value for testing.
|
|
*
|
|
* @param boolean $new_return return value to set
|
|
* @return boolean
|
|
*/
|
|
function is_cli(bool $new_return = null): bool
|
|
{
|
|
// PHPUnit always runs via CLI.
|
|
static $return_value = true;
|
|
|
|
if ($new_return !== null)
|
|
{
|
|
$return_value = $new_return;
|
|
}
|
|
|
|
return $return_value;
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
|