Переглянути джерело

fix: 🐛 Call parent constructor on model

IceToast 2 роки тому
батько
коміт
bc56f713ad
2 змінених файлів з 4 додано та 0 видалено
  1. 2 0
      app/Models/Server.php
  2. 2 0
      app/Models/User.php

+ 2 - 0
app/Models/Server.php

@@ -69,6 +69,8 @@ class Server extends Model
 
     public function __construct()
     {
+        parent::__construct();
+
         $ptero_settings = new PterodactylSettings();
         $this->pterodactyl = new PterodactylClient($ptero_settings);
     }

+ 2 - 0
app/Models/User.php

@@ -93,6 +93,8 @@ class User extends Authenticatable implements MustVerifyEmail
 
     public function __construct()
     {
+        parent::__construct();
+
         $ptero_settings = new PterodactylSettings();
         $this->pterodactyl = new PterodactylClient($ptero_settings);
     }