Fixing the horrors of overly long lines, misalignment, and incorrect use of new lines.
This commit is contained in:
parent
31ee6522c1
commit
69ea47874f
19 changed files with 938 additions and 102 deletions
3
vars.php
3
vars.php
|
|
@ -26,7 +26,6 @@ if (!defined('PHPCI_IS_CONSOLE')) {
|
|||
define('PHPCI_IS_CONSOLE', false);
|
||||
}
|
||||
|
||||
$isWin = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? true : false;
|
||||
if (!defined('IS_WIN')) {
|
||||
define('IS_WIN', $isWin);
|
||||
define('IS_WIN', ((strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? true : false));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue