@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | public static function clientVersion() |
| 22 | 22 | {
|
| 23 | - if(defined('version')){
|
|
| 23 | + if (defined('version')) {
|
|
| 24 | 24 | return version; |
| 25 | 25 | } |
| 26 | 26 | |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | public static function getConsoleVersion() |
| 46 | 46 | {
|
| 47 | - if(Utils::isNamespaceExists(self::versionNamespace()) && method_exists(self::versionNamespace(),'consoleVersion')){
|
|
| 47 | + if (Utils::isNamespaceExists(self::versionNamespace()) && method_exists(self::versionNamespace(), 'consoleVersion')) {
|
|
| 48 | 48 | return self::versionNamespace()::consoleVersion(); |
| 49 | 49 | } |
| 50 | 50 | |
@@ -55,9 +55,9 @@ discard block |
||
| 55 | 55 | * @param array $versions |
| 56 | 56 | * @return array |
| 57 | 57 | */ |
| 58 | - private static function getSupportedVersions($versions=array()) |
|
| 58 | + private static function getSupportedVersions($versions = array()) |
|
| 59 | 59 | {
|
| 60 | - if(count($versions)){
|
|
| 60 | + if (count($versions)) {
|
|
| 61 | 61 | return $versions; |
| 62 | 62 | } |
| 63 | 63 | return self::$supportedVersions; |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | * @param array $versions |
| 70 | 70 | * @return mixed |
| 71 | 71 | */ |
| 72 | - public static function supportedVersions($versions=array()) |
|
| 72 | + public static function supportedVersions($versions = array()) |
|
| 73 | 73 | {
|
| 74 | 74 | return self::versionNamespace()::getSupportedVersions($versions); |
| 75 | 75 | } |
@@ -81,11 +81,11 @@ discard block |
||
| 81 | 81 | */ |
| 82 | 82 | public static function version() |
| 83 | 83 | {
|
| 84 | - if(self::clientVersion()!==null){
|
|
| 84 | + if (self::clientVersion()!==null) {
|
|
| 85 | 85 | return self::clientVersion(); |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | - if(app()->console() && self::getConsoleVersion()!==null){
|
|
| 88 | + if (app()->console() && self::getConsoleVersion()!==null) {
|
|
| 89 | 89 | return self::getConsoleVersion(); |
| 90 | 90 | } |
| 91 | 91 | |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | */ |
| 100 | 100 | public static function versionNamespace() |
| 101 | 101 | {
|
| 102 | - if(file_exists(app()->path()->kernel())){
|
|
| 102 | + if (file_exists(app()->path()->kernel())) {
|
|
| 103 | 103 | return app()->namespace()->kernel().'\Version'; |
| 104 | 104 | } |
| 105 | 105 | |