From 0633355ea2010cdbb99170f8097546bd96f62cde Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Wed, 9 Feb 2022 21:13:19 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/MailEclipse.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MailEclipse.php b/src/MailEclipse.php index 495caf7..9c0ccd1 100644 --- a/src/MailEclipse.php +++ b/src/MailEclipse.php @@ -934,7 +934,7 @@ private static function resolveFactory($eloquentFactory, $model): ?object return $model::factory()->make(); } - $action = sprintf('php artisan make:factory %sFactory --model=%s', Str::of($model)->afterLast("\\"), $model); + $action = sprintf('php artisan make:factory %sFactory --model=%s', Str::of($model)->afterLast('\\'), $model); throw new \Exception("No Factory found, maileclipse.factory config is true. But there is no Factory. Create using $action"); }