[Updated: added whitespace in Model condition.]

This commit is contained in:
Vivek 2021-10-14 14:33:34 +05:30
parent d4c623c25f
commit 3f80d17499
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ class Category extends TranslatableModel implements CategoryContract
*/
public function image_url()
{
if (!$this->image) {
if (! $this->image) {
return;
}

View File

@ -53,7 +53,7 @@ class Customer extends Authenticatable implements CustomerContract, JWTSubject
*/
public function image_url()
{
if (!$this->image) {
if (! $this->image) {
return;
}