Completed
Push — development ( d0998d...e182a7 )
by Claudio
91:45 queued 77:59
created
app/Models/EmulatorSettings.php 1 patch
Switch Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,30 +1,30 @@
 block discarded – undo
1
-<?php
1
+ <?php
2 2
 
3
-namespace App\Models;
3
+ namespace App\Models;
4 4
 
5 5
 /**
6 6
  * Class EmulatorSettings.
7 7
  */
8
-class EmulatorSettings extends ChocolateyModel
9
-{
10
-    /**
8
+ class EmulatorSettings extends ChocolateyModel
9
+ {
10
+     /**
11 11
      * Disable Timestamps.
12 12
      *
13 13
      * @var bool
14 14
      */
15
-    public $timestamps = false;
15
+     public $timestamps = false;
16 16
 
17
-    /**
17
+     /**
18 18
      * The table associated with the model.
19 19
      *
20 20
      * @var string
21 21
      */
22
-    protected $table = 'emulator_settings';
22
+     protected $table = 'emulator_settings';
23 23
 
24
-    /**
24
+     /**
25 25
      * Primary Key of the Table.
26 26
      *
27 27
      * @var string
28 28
      */
29
-    protected $primaryKey = 'id';
29
+     protected $primaryKey = 'id';
30 30
 }
Please login to merge, or discard this patch.
app/Models/UserBadge.php 1 patch
Switch Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -1,66 +1,66 @@
 block discarded – undo
1
-<?php
1
+ <?php
2 2
 
3
-namespace App\Models;
3
+ namespace App\Models;
4 4
 
5
-use Sofa\Eloquence\Eloquence;
6
-use Sofa\Eloquence\Mappable;
5
+ use Sofa\Eloquence\Eloquence;
6
+ use Sofa\Eloquence\Mappable;
7 7
 
8 8
 /**
9 9
  * Class UserBadge.
10 10
  */
11
-class UserBadge extends ChocolateyModel
12
-{
13
-    use Eloquence, Mappable;
11
+ class UserBadge extends ChocolateyModel
12
+ {
13
+     use Eloquence, Mappable;
14 14
 
15
-    /**
15
+     /**
16 16
      * Disable Timestamps.
17 17
      *
18 18
      * @var bool
19 19
      */
20
-    public $timestamps = false;
20
+     public $timestamps = false;
21 21
 
22
-    /**
22
+     /**
23 23
      * The table associated with the model.
24 24
      *
25 25
      * @var string
26 26
      */
27
-    protected $table = 'users_badges';
27
+     protected $table = 'users_badges';
28 28
 
29
-    /**
29
+     /**
30 30
      * Primary Key of the Table.
31 31
      *
32 32
      * @var string
33 33
      */
34
-    protected $primaryKey = 'id';
34
+     protected $primaryKey = 'id';
35 35
 
36
-    /**
36
+     /**
37 37
      * The attributes that will be mapped.
38 38
      *
39 39
      * @var array
40 40
      */
41
-    protected $maps = ['badgeIndex' => 'slot_id', 'code' => 'badge_code', 'name' => 'badge_code'];
41
+     protected $maps = ['badgeIndex' => 'slot_id', 'code' => 'badge_code', 'name' => 'badge_code'];
42 42
 
43
-    /**
43
+     /**
44 44
      * The attributes excluded from the model's JSON form.
45 45
      *
46 46
      * @var array
47 47
      */
48
-    protected $hidden = ['user_id', 'badge_code', 'slot_id', 'id'];
48
+     protected $hidden = ['user_id', 'badge_code', 'slot_id', 'id'];
49 49
 
50
-    /**
50
+     /**
51 51
      * The Appender(s) of the Model.
52 52
      *
53 53
      * @var array
54 54
      */
55
-    protected $appends = ['description', 'badgeIndex', 'code', 'name'];
55
+     protected $appends = ['description', 'badgeIndex', 'code', 'name'];
56 56
 
57
-    /**
57
+     /**
58 58
      * Get Description Attribute.
59 59
      *
60 60
      * @return string
61 61
      */
62
-    public function getDescriptionAttribute(): string
63
-    {
64
-        return "Badge {$this->attributes['badge_code']}";
65
-    }
62
+     public function getDescriptionAttribute(): string
63
+     {
64
+         return "Badge {$this->attributes['badge_code']}";
65
+     }
66 66
 }
Please login to merge, or discard this patch.
app/Models/PaymentCheckout.php 1 patch
Switch Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,30 +1,30 @@
 block discarded – undo
1
-<?php
1
+ <?php
2 2
 
3
-namespace App\Models;
3
+ namespace App\Models;
4 4
 
5 5
 /**
6 6
  * Class PaymentCheckout.
7 7
  */
8
-class PaymentCheckout extends ChocolateyModel
9
-{
10
-    /**
8
+ class PaymentCheckout extends ChocolateyModel
9
+ {
10
+     /**
11 11
      * Disable Timestamps.
12 12
      *
13 13
      * @var bool
14 14
      */
15
-    public $timestamps = false;
15
+     public $timestamps = false;
16 16
 
17
-    /**
17
+     /**
18 18
      * The table associated with the model.
19 19
      *
20 20
      * @var string
21 21
      */
22
-    protected $table = 'chocolatey_shop_payment_checkout';
22
+     protected $table = 'chocolatey_shop_payment_checkout';
23 23
 
24
-    /**
24
+     /**
25 25
      * Primary Key of the Table.
26 26
      *
27 27
      * @var string
28 28
      */
29
-    protected $primaryKey = 'id';
29
+     protected $primaryKey = 'id';
30 30
 }
Please login to merge, or discard this patch.
app/Models/GroupMember.php 1 patch
Switch Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -1,66 +1,66 @@
 block discarded – undo
1
-<?php
1
+ <?php
2 2
 
3
-namespace App\Models;
3
+ namespace App\Models;
4 4
 
5 5
 /**
6 6
  * Class GroupMember.
7 7
  */
8
-class GroupMember extends ChocolateyModel
9
-{
10
-    /**
8
+ class GroupMember extends ChocolateyModel
9
+ {
10
+     /**
11 11
      * Disable Timestamps.
12 12
      *
13 13
      * @var bool
14 14
      */
15
-    public $timestamps = false;
15
+     public $timestamps = false;
16 16
 
17
-    /**
17
+     /**
18 18
      * The table associated with the model.
19 19
      *
20 20
      * @var string
21 21
      */
22
-    protected $table = 'guilds_members';
22
+     protected $table = 'guilds_members';
23 23
 
24
-    /**
24
+     /**
25 25
      * Primary Key of the Table.
26 26
      *
27 27
      * @var string
28 28
      */
29
-    protected $primaryKey = 'id';
29
+     protected $primaryKey = 'id';
30 30
 
31
-    /**
31
+     /**
32 32
      * The attributes excluded from the model's JSON form.
33 33
      *
34 34
      * @var array
35 35
      */
36
-    protected $hidden = ['id', 'member_since', 'guild_id', 'level_id', 'user_id'];
36
+     protected $hidden = ['id', 'member_since', 'guild_id', 'level_id', 'user_id'];
37 37
 
38
-    /**
38
+     /**
39 39
      * The Appender(s) of the Model.
40 40
      *
41 41
      * @var array
42 42
      */
43
-    protected $appends = ['guild'];
43
+     protected $appends = ['guild'];
44 44
 
45
-    /**
45
+     /**
46 46
      * Get User Group by Member Group Id.
47 47
      *
48 48
      * @return UserGroup
49 49
      */
50
-    public function getGuildAttribute(): UserGroup
51
-    {
52
-        return UserGroup::find($this->attributes['guild_id']);
53
-    }
50
+     public function getGuildAttribute(): UserGroup
51
+     {
52
+         return UserGroup::find($this->attributes['guild_id']);
53
+     }
54 54
 
55
-    /**
55
+     /**
56 56
      * Get Description Attribute.
57 57
      *
58 58
      * @TODO: Get Real Badge Description
59 59
      *
60 60
      * @return string
61 61
      */
62
-    public function getDescriptionAttribute(): string
63
-    {
64
-        return "Badge {$this->attributes['badge_code']}";
65
-    }
62
+     public function getDescriptionAttribute(): string
63
+     {
64
+         return "Badge {$this->attributes['badge_code']}";
65
+     }
66 66
 }
Please login to merge, or discard this patch.
app/Models/Voucher.php 1 patch
Switch Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,30 +1,30 @@
 block discarded – undo
1
-<?php
1
+ <?php
2 2
 
3
-namespace App\Models;
3
+ namespace App\Models;
4 4
 
5 5
 /**
6 6
  * Class Voucher.
7 7
  */
8
-class Voucher extends ChocolateyModel
9
-{
10
-    /**
8
+ class Voucher extends ChocolateyModel
9
+ {
10
+     /**
11 11
      * Disable Timestamps.
12 12
      *
13 13
      * @var bool
14 14
      */
15
-    public $timestamps = false;
15
+     public $timestamps = false;
16 16
 
17
-    /**
17
+     /**
18 18
      * The table associated with the model.
19 19
      *
20 20
      * @var string
21 21
      */
22
-    protected $table = 'vouchers';
22
+     protected $table = 'vouchers';
23 23
 
24
-    /**
24
+     /**
25 25
      * Primary Key of the Table.
26 26
      *
27 27
      * @var string
28 28
      */
29
-    protected $primaryKey = 'id';
29
+     protected $primaryKey = 'id';
30 30
 }
Please login to merge, or discard this patch.
app/Models/PurchaseParam.php 1 patch
Switch Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1,44 +1,44 @@
 block discarded – undo
1
-<?php
1
+ <?php
2 2
 
3
-namespace App\Models;
3
+ namespace App\Models;
4 4
 
5 5
 /**
6 6
  * Class PurchaseParam.
7 7
  */
8
-class PurchaseParam
9
-{
10
-    /**
8
+ class PurchaseParam
9
+ {
10
+     /**
11 11
      * Country Id.
12 12
      *
13 13
      * @var int
14 14
      */
15
-    public $countryId;
15
+     public $countryId;
16 16
 
17
-    /**
17
+     /**
18 18
      * Price Point Id.
19 19
      *
20 20
      * @var int
21 21
      */
22
-    public $pricePointId;
22
+     public $pricePointId;
23 23
 
24
-    /**
24
+     /**
25 25
      * Payment Method Id.
26 26
      *
27 27
      * @var int
28 28
      */
29
-    public $paymentMethodId;
29
+     public $paymentMethodId;
30 30
 
31
-    /**
31
+     /**
32 32
      * Create a new Purchase Param.
33 33
      *
34 34
      * @param int $countryId
35 35
      * @param int $pricePointId
36 36
      * @param int $paymentMethodId
37 37
      */
38
-    public function __construct(int $countryId, int $pricePointId, int $paymentMethodId)
39
-    {
40
-        $this->countryId = $countryId;
41
-        $this->pricePointId = $pricePointId;
42
-        $this->paymentMethodId = $paymentMethodId;
43
-    }
38
+     public function __construct(int $countryId, int $pricePointId, int $paymentMethodId)
39
+     {
40
+         $this->countryId = $countryId;
41
+         $this->pricePointId = $pricePointId;
42
+         $this->paymentMethodId = $paymentMethodId;
43
+     }
44 44
 }
Please login to merge, or discard this patch.
app/Models/UserGroup.php 1 patch
Switch Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -1,80 +1,80 @@
 block discarded – undo
1
-<?php
1
+ <?php
2 2
 
3
-namespace App\Models;
3
+ namespace App\Models;
4 4
 
5
-use Sofa\Eloquence\Eloquence;
6
-use Sofa\Eloquence\Mappable;
5
+ use Sofa\Eloquence\Eloquence;
6
+ use Sofa\Eloquence\Mappable;
7 7
 
8 8
 /**
9 9
  * Class UserGroup.
10 10
  */
11
-class UserGroup extends ChocolateyModel
12
-{
13
-    use Eloquence, Mappable;
11
+ class UserGroup extends ChocolateyModel
12
+ {
13
+     use Eloquence, Mappable;
14 14
 
15
-    /**
15
+     /**
16 16
      * Disable Timestamps.
17 17
      *
18 18
      * @var bool
19 19
      */
20
-    public $timestamps = false;
20
+     public $timestamps = false;
21 21
 
22
-    /**
22
+     /**
23 23
      * The table associated with the model.
24 24
      *
25 25
      * @var string
26 26
      */
27
-    protected $table = 'guilds';
27
+     protected $table = 'guilds';
28 28
 
29
-    /**
29
+     /**
30 30
      * Primary Key of the Table.
31 31
      *
32 32
      * @var string
33 33
      */
34
-    protected $primaryKey = 'id';
34
+     protected $primaryKey = 'id';
35 35
 
36
-    /**
36
+     /**
37 37
      * The attributes that will be mapped.
38 38
      *
39 39
      * @var array
40 40
      */
41
-    protected $maps = ['badgeCode' => 'badge', 'roomId' => 'room_id', 'primaryColour' => 'color_one', 'secondaryColour' => 'color_two'];
41
+     protected $maps = ['badgeCode' => 'badge', 'roomId' => 'room_id', 'primaryColour' => 'color_one', 'secondaryColour' => 'color_two'];
42 42
 
43
-    /**
43
+     /**
44 44
      * The attributes excluded from the model's JSON form.
45 45
      *
46 46
      * @var array
47 47
      */
48
-    protected $hidden = ['user_id', 'badge', 'slot_id', 'id', 'user_id', 'room_id', 'state', 'rights', 'forum', 'date_created', 'read_forum', 'post_messages', 'post_threads', 'mod_forum'];
48
+     protected $hidden = ['user_id', 'badge', 'slot_id', 'id', 'user_id', 'room_id', 'state', 'rights', 'forum', 'date_created', 'read_forum', 'post_messages', 'post_threads', 'mod_forum'];
49 49
 
50
-    /**
50
+     /**
51 51
      * The Appender(s) of the Model.
52 52
      *
53 53
      * @var array
54 54
      */
55
-    protected $appends = ['badgeCode', 'roomId', 'primaryColour', 'secondaryColour', 'type', 'isAdmin'];
55
+     protected $appends = ['badgeCode', 'roomId', 'primaryColour', 'secondaryColour', 'type', 'isAdmin'];
56 56
 
57
-    /**
57
+     /**
58 58
      * Return if is Admin.
59 59
      *
60 60
      * @TODO: Link with User Data
61 61
      *
62 62
      * @return bool
63 63
      */
64
-    public function getIsAdminAttribute(): bool
65
-    {
66
-        return false;
67
-    }
64
+     public function getIsAdminAttribute(): bool
65
+     {
66
+         return false;
67
+     }
68 68
 
69
-    /**
69
+     /**
70 70
      * Get the Group Type.
71 71
      *
72 72
      * @TODO: What NORMAL means?
73 73
      *
74 74
      * @return string
75 75
      */
76
-    public function getTypeAttribute(): string
77
-    {
78
-        return 'NORMAL';
79
-    }
76
+     public function getTypeAttribute(): string
77
+     {
78
+         return 'NORMAL';
79
+     }
80 80
 }
Please login to merge, or discard this patch.
app/Helpers/Mail.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     public function send(array $configuration, string $view = 'habbo-web-mail.confirm-mail')
29 29
     {
30 30
         if (Config::get('mail.enable')) {
31
-            MailFacade::send($view, $configuration, function ($message) use ($configuration) {
31
+            MailFacade::send($view, $configuration, function($message) use ($configuration) {
32 32
                 $message->from(Config::get('mail.from.address'), Config::get('mail.from.name'));
33 33
                 $message->to($configuration['email'])->subject($configuration['subject']);
34 34
             });
Please login to merge, or discard this patch.
Switch Indentation   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -1,41 +1,41 @@  discard block
 block discarded – undo
1
-<?php
1
+ <?php
2 2
 
3
-namespace App\Helpers;
3
+ namespace App\Helpers;
4 4
 
5
-use App\Models\Mail as MailModel;
6
-use App\Singleton;
7
-use Illuminate\Support\Facades\Config;
8
-use Illuminate\Support\Facades\Mail as MailFacade;
5
+ use App\Models\Mail as MailModel;
6
+ use App\Singleton;
7
+ use Illuminate\Support\Facades\Config;
8
+ use Illuminate\Support\Facades\Mail as MailFacade;
9 9
 
10 10
 /**
11 11
  * Class Mail.
12 12
  */
13
-final class Mail extends Singleton
14
-{
15
-    /**
13
+ final class Mail extends Singleton
14
+ {
15
+     /**
16 16
      * Stored Mail Model.
17 17
      *
18 18
      * @var MailModel
19 19
      */
20
-    protected $mailModel;
20
+     protected $mailModel;
21 21
 
22
-    /**
22
+     /**
23 23
      * Send an Email.
24 24
      *
25 25
      * @param array  $configuration
26 26
      * @param string $view
27 27
      */
28
-    public function send(array $configuration, string $view = 'habbo-web-mail.confirm-mail')
29
-    {
30
-        if (Config::get('mail.enable')) {
31
-            MailFacade::send($view, $configuration, function ($message) use ($configuration) {
32
-                $message->from(Config::get('mail.from.address'), Config::get('mail.from.name'));
33
-                $message->to($configuration['email'])->subject($configuration['subject']);
34
-            });
35
-        }
36
-    }
28
+     public function send(array $configuration, string $view = 'habbo-web-mail.confirm-mail')
29
+     {
30
+         if (Config::get('mail.enable')) {
31
+             MailFacade::send($view, $configuration, function ($message) use ($configuration) {
32
+                 $message->from(Config::get('mail.from.address'), Config::get('mail.from.name'));
33
+                 $message->to($configuration['email'])->subject($configuration['subject']);
34
+             });
35
+         }
36
+     }
37 37
 
38
-    /**
38
+     /**
39 39
      * Store an E-mail.
40 40
      *
41 41
      * @param string $email
@@ -43,72 +43,72 @@  discard block
 block discarded – undo
43 43
      *
44 44
      * @return string
45 45
      */
46
-    public function store(string $email, string $url): string
47
-    {
48
-        (new MailModel())->store($token = uniqid('HabboMail', true), $url, $email);
46
+     public function store(string $email, string $url): string
47
+     {
48
+         (new MailModel())->store($token = uniqid('HabboMail', true), $url, $email);
49 49
 
50
-        return $token;
51
-    }
50
+         return $token;
51
+     }
52 52
 
53
-    /**
53
+     /**
54 54
      * Return if Exists E-Mail with that Token.
55 55
      *
56 56
      * @param string $token
57 57
      *
58 58
      * @return bool
59 59
      */
60
-    public function has(string $token)
61
-    {
62
-        return $this->get($token) !== null;
63
-    }
60
+     public function has(string $token)
61
+     {
62
+         return $this->get($token) !== null;
63
+     }
64 64
 
65
-    /**
65
+     /**
66 66
      * Get an E-mail by Token.
67 67
      *
68 68
      * @param string $token
69 69
      *
70 70
      * @return MailModel
71 71
      */
72
-    public function get(string $token = '')
73
-    {
74
-        if ($this->mailModel == null && !empty($token)) {
75
-            $mailModel = MailModel::where('token', $token)->where('used', '0')->first();
72
+     public function get(string $token = '')
73
+     {
74
+         if ($this->mailModel == null && !empty($token)) {
75
+             $mailModel = MailModel::where('token', $token)->where('used', '0')->first();
76 76
 
77
-            if ($mailModel !== null) {
78
-                if (strtotime($mailModel->created_at) + (Config::get('mail.expire') * 24 * 60 * 60) >= time()) {
79
-                    $this->set($mailModel);
77
+             if ($mailModel !== null) {
78
+                 if (strtotime($mailModel->created_at) + (Config::get('mail.expire') * 24 * 60 * 60) >= time()) {
79
+                     $this->set($mailModel);
80 80
 
81
-                    $this->update(['used' => '1']);
82
-                }
83
-            }
84
-        }
81
+                     $this->update(['used' => '1']);
82
+                 }
83
+             }
84
+         }
85 85
 
86
-        return $this->mailModel;
87
-    }
86
+         return $this->mailModel;
87
+     }
88 88
 
89
-    /**
89
+     /**
90 90
      * Set Mail Model in Cache.
91 91
      *
92 92
      * @param MailModel $model
93 93
      *
94 94
      * @return MailModel
95 95
      */
96
-    public function set(MailModel $model)
97
-    {
98
-        return $this->mailModel = $model;
99
-    }
96
+     public function set(MailModel $model)
97
+     {
98
+         return $this->mailModel = $model;
99
+     }
100 100
 
101
-    /**
101
+     /**
102 102
      * Update Mail Model Data.
103 103
      *
104 104
      * @param array $parameters
105 105
      *
106 106
      * @return MailModel
107 107
      */
108
-    public function update(array $parameters)
109
-    {
110
-        $this->mailModel->update($parameters);
108
+     public function update(array $parameters)
109
+     {
110
+         $this->mailModel->update($parameters);
111 111
 
112
-        return $this->mailModel;
113
-    }
112
+         return $this->mailModel;
113
+     }
114 114
 }
Please login to merge, or discard this patch.
app/Exceptions/Handler.php 1 patch
Switch Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -1,33 +1,33 @@  discard block
 block discarded – undo
1
-<?php
1
+ <?php
2 2
 
3
-namespace App\Exceptions;
3
+ namespace App\Exceptions;
4 4
 
5
-use Exception;
6
-use Illuminate\Auth\Access\AuthorizationException;
7
-use Illuminate\Database\Eloquent\ModelNotFoundException;
8
-use Illuminate\Validation\ValidationException;
9
-use Laravel\Lumen\Exceptions\Handler as ExceptionHandler;
10
-use Symfony\Component\HttpKernel\Exception\HttpException;
11
-use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
5
+ use Exception;
6
+ use Illuminate\Auth\Access\AuthorizationException;
7
+ use Illuminate\Database\Eloquent\ModelNotFoundException;
8
+ use Illuminate\Validation\ValidationException;
9
+ use Laravel\Lumen\Exceptions\Handler as ExceptionHandler;
10
+ use Symfony\Component\HttpKernel\Exception\HttpException;
11
+ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
12 12
 
13 13
 /**
14 14
  * Class Handler.
15 15
  */
16
-class Handler extends ExceptionHandler
17
-{
18
-    /**
16
+ class Handler extends ExceptionHandler
17
+ {
18
+     /**
19 19
      * A list of the exception types that should not be reported.
20 20
      *
21 21
      * @var array
22 22
      */
23
-    protected $dontReport = [
24
-        AuthorizationException::class,
25
-        HttpException::class,
26
-        ModelNotFoundException::class,
27
-        ValidationException::class,
28
-    ];
23
+     protected $dontReport = [
24
+         AuthorizationException::class,
25
+         HttpException::class,
26
+         ModelNotFoundException::class,
27
+         ValidationException::class,
28
+     ];
29 29
 
30
-    /**
30
+     /**
31 31
      * Report or log an exception.
32 32
      *
33 33
      * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
@@ -36,12 +36,12 @@  discard block
 block discarded – undo
36 36
      *
37 37
      * @return void
38 38
      */
39
-    public function report(Exception $e)
40
-    {
41
-        parent::report($e);
42
-    }
39
+     public function report(Exception $e)
40
+     {
41
+         parent::report($e);
42
+     }
43 43
 
44
-    /**
44
+     /**
45 45
      * Render an exception into an HTTP response.
46 46
      *
47 47
      * @param \Illuminate\Http\Request $request
@@ -49,12 +49,12 @@  discard block
 block discarded – undo
49 49
      *
50 50
      * @return \Illuminate\Http\Response
51 51
      */
52
-    public function render($request, Exception $e)
53
-    {
54
-        if ($e instanceof NotFoundHttpException) {
55
-            return response(view('habbo-web-pages.habbo-web'));
56
-        }
52
+     public function render($request, Exception $e)
53
+     {
54
+         if ($e instanceof NotFoundHttpException) {
55
+             return response(view('habbo-web-pages.habbo-web'));
56
+         }
57 57
 
58
-        return parent::render($request, $e);
59
-    }
58
+         return parent::render($request, $e);
59
+     }
60 60
 }
Please login to merge, or discard this patch.