From fc660473a9a20aed0980ae533ab37d874026ea2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Fri, 16 Oct 2020 18:28:10 +0300 Subject: [PATCH] fixd tests --- app/Abstracts/Factory.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Abstracts/Factory.php b/app/Abstracts/Factory.php index 4d0c3e011..97d81f2ab 100644 --- a/app/Abstracts/Factory.php +++ b/app/Abstracts/Factory.php @@ -10,9 +10,9 @@ abstract class Factory extends BaseFactory { use Jobs; - public function __construct() + public function __construct(...$arguments) { - parent::__construct(); + parent::__construct(...$arguments); $this->user = User::first(); $this->company = $this->user->companies()->first();