@@ -1,8 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @author Temitope Olotin <[email protected]> |
|
4 | - * @license <https://opensource.org/license/MIT> MIT |
|
5 | - */ |
|
3 | + * @author Temitope Olotin <[email protected]> |
|
4 | + * @license <https://opensource.org/license/MIT> MIT |
|
5 | + */ |
|
6 | 6 | namespace Laztopaz\EmojiRestfulAPI; |
7 | 7 | |
8 | 8 | use Dotenv\Dotenv; |
@@ -48,15 +48,15 @@ discard block |
||
48 | 48 | $this->capsule->bootEloquent(); |
49 | 49 | } |
50 | 50 | |
51 | - /** |
|
52 | - * Load Dotenv to grant getenv() access to |
|
53 | - * environment variables in .env file. |
|
54 | - */ |
|
55 | - public static function loadEnv() |
|
56 | - { |
|
57 | - if (! getenv('APP_ENV')) { |
|
58 | - $dotenv = new Dotenv(__DIR__.'/../../'); |
|
59 | - $dotenv->load(); |
|
60 | - } |
|
61 | - } |
|
51 | + /** |
|
52 | + * Load Dotenv to grant getenv() access to |
|
53 | + * environment variables in .env file. |
|
54 | + */ |
|
55 | + public static function loadEnv() |
|
56 | + { |
|
57 | + if (! getenv('APP_ENV')) { |
|
58 | + $dotenv = new Dotenv(__DIR__.'/../../'); |
|
59 | + $dotenv->load(); |
|
60 | + } |
|
61 | + } |
|
62 | 62 | } |
@@ -54,7 +54,7 @@ |
||
54 | 54 | */ |
55 | 55 | public static function loadEnv() |
56 | 56 | { |
57 | - if (! getenv('APP_ENV')) { |
|
57 | + if (!getenv('APP_ENV')) { |
|
58 | 58 | $dotenv = new Dotenv(__DIR__.'/../../'); |
59 | 59 | $dotenv->load(); |
60 | 60 | } |
@@ -18,7 +18,7 @@ |
||
18 | 18 | $authHeader = $request->getHeader('HTTP_AUTHORIZATION'); |
19 | 19 | |
20 | 20 | try { |
21 | - if (is_array($authHeader) && ! empty($authHeader)) { |
|
21 | + if (is_array($authHeader) && !empty($authHeader)) { |
|
22 | 22 | $secretKey = base64_decode(getenv('secret')); |
23 | 23 | $jwt = json_decode($authHeader[0], true); |
24 | 24 | //decode the JWT using the key from config |
@@ -12,7 +12,7 @@ |
||
12 | 12 | * |
13 | 13 | * @param $data |
14 | 14 | * |
15 | - * @return boolean true |
|
15 | + * @return boolean|null true |
|
16 | 16 | */ |
17 | 17 | public function createUser(array $data) |
18 | 18 | { |