@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | - if(!isset($GLOBALS["JATEPath"])) |
|
| 2 | + if (!isset($GLOBALS["JATEPath"])) |
|
| 3 | 3 | $GLOBALS["JATEPath"] = []; |
| 4 | 4 | $commonLocations = [ |
| 5 | 5 | "bower_components/JATE/dist/" |
@@ -10,12 +10,12 @@ discard block |
||
| 10 | 10 | ]; |
| 11 | 11 | $jSuccess = false; |
| 12 | 12 | foreach ($commonLocations as $path) |
| 13 | - if(file_exists("${path}jate/coreEngine.php")) { |
|
| 13 | + if (file_exists("${path}jate/coreEngine.php")) { |
|
| 14 | 14 | array_push($GLOBALS["JATEPath"], $path); |
| 15 | 15 | require_once("${path}jate/coreEngine.php"); |
| 16 | 16 | $jSuccess = true; |
| 17 | 17 | break; |
| 18 | 18 | } |
| 19 | - if( !$jSuccess ) |
|
| 19 | + if (!$jSuccess) |
|
| 20 | 20 | throw new Exception("JATE can't find coreEngine.php."); |
| 21 | 21 | ?> |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | - declare( strict_types = 1 ); |
|
| 2 | + declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | use PHPUnit\Framework\TestCase; |
| 5 | 5 | |