From 5b1f0583bbf634206ca833870bd0bb1f4a9ce1db Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 6 Aug 2020 14:39:02 +0000 Subject: [PATCH] Apply fixes from StyleCI [ci skip] [skip ci] --- src/Illuminate/Database/Eloquent/Model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Database/Eloquent/Model.php b/src/Illuminate/Database/Eloquent/Model.php index f6c7e99f016e..074745ed8eee 100644 --- a/src/Illuminate/Database/Eloquent/Model.php +++ b/src/Illuminate/Database/Eloquent/Model.php @@ -379,7 +379,7 @@ protected function removeTableFromKey($key) if (strpos($key, '.') !== false) { if (! empty($this->getGuarded()) && $this->getGuarded() !== ['*']) { - throw new LogicException("Mass assignment of Eloquent attributes including table names is unsafe when guarding attributes."); + throw new LogicException('Mass assignment of Eloquent attributes including table names is unsafe when guarding attributes.'); } return last(explode('.', $key));