Completed
Push — master ( 9da9ff...cb8991 )
by Temitope
04:32
created
src/Database/Schema.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function createUser()
27 27
     {
28
-        if (! Capsule::schema()->hasTable('users')) {
29
-            Capsule::schema()->create('users', function ($table) {
28
+        if (!Capsule::schema()->hasTable('users')) {
29
+            Capsule::schema()->create('users', function($table) {
30 30
                 $table->increments('id');
31 31
                 $table->string('firstname');
32 32
                 $table->string('lastname');
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public function createKeyword()
45 45
     {
46
-        if (! Capsule::schema()->hasTable('keywords')) {
47
-            Capsule::schema()->create('keywords', function ($table) {
46
+        if (!Capsule::schema()->hasTable('keywords')) {
47
+            Capsule::schema()->create('keywords', function($table) {
48 48
                 $table->increments('id');
49 49
                 $table->integer('emoji_id');
50 50
                 $table->string('keyword_name');
@@ -58,8 +58,8 @@  discard block
 block discarded – undo
58 58
      */
59 59
     public function createCategory()
60 60
     {
61
-        if (! Capsule::schema()->hasTable('categories')) {
62
-            Capsule::schema()->create('categories', function ($table) {
61
+        if (!Capsule::schema()->hasTable('categories')) {
62
+            Capsule::schema()->create('categories', function($table) {
63 63
                 $table->increments('id');
64 64
                 $table->string('category_name');
65 65
                 $table->timestamps();
@@ -73,8 +73,8 @@  discard block
 block discarded – undo
73 73
      */
74 74
     public function createEmoji()
75 75
     {
76
-        if (! Capsule::schema()->hasTable('emojis')) {
77
-            Capsule::schema()->create('emojis', function ($table) {
76
+        if (!Capsule::schema()->hasTable('emojis')) {
77
+            Capsule::schema()->create('emojis', function($table) {
78 78
                 $table->increments('id');
79 79
                 $table->string('name');
80 80
                 $table->string('char');
Please login to merge, or discard this patch.
src/Database/DatabaseConnection.php 2 patches
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
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
          }
Please login to merge, or discard this patch.
src/Auth/Middleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Controller/EmojiController.php 2 patches
Doc Comments   +5 added lines, -3 removed lines patch added patch discarded remove patch
@@ -108,8 +108,8 @@  discard block
 block discarded – undo
108 108
      * This method creates emoji and keywords associated with it.
109 109
      *
110 110
      * @param $emoji
111
-     * @param $request
112
-     * @param $response
111
+     * @param Request $request
112
+     * @param Response $response
113 113
      * @param $requestParams
114 114
      *
115 115
      * @return json response
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      * This method updates an emoji.
173 173
      *
174 174
      * @param $emoji
175
-     * @param $response
175
+     * @param Response $response
176 176
      * @param $updateParams
177 177
      *
178 178
      * @return json $response
@@ -363,6 +363,8 @@  discard block
 block discarded – undo
363 363
 
364 364
     /**
365 365
      * This method solves for rightful of a record
366
+     * @param Request $request
367
+     * @param Response $response
366 368
      */
367 369
     public function findTheOwner($args, $request, $response)
368 370
     {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
         if (count($emoji) > 0) {
244 244
             $emojis = $this->findTheOwner($args, $request, $response);
245 245
 
246
-            if (! is_null($emojis)) {
246
+            if (!is_null($emojis)) {
247 247
                 $emojis->delete();
248 248
             }
249 249
 
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
         foreach ($emojis as $key => &$value) {
305 305
             $value['created_by'] = $value['created_by']['firstname'].' '.$value['created_by']['lastname'];
306 306
             $value['category'] = $value['category']['category_name'];
307
-            $value['keywords'] = array_map(function ($key) { return $key['keyword_name']; }, $value['keywords']);
307
+            $value['keywords'] = array_map(function($key) { return $key['keyword_name']; }, $value['keywords']);
308 308
         }
309 309
 
310 310
         return $emojis;
Please login to merge, or discard this patch.