소스 검색

fixed formatting

Jozef Bonnar 2 년 전
부모
커밋
62700a91f6
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 6 6
      app/Models/User.php

+ 6 - 6
app/Models/User.php

@@ -260,10 +260,10 @@ class User extends Authenticatable implements MustVerifyEmail
         return $status;
     }
 
-        public function verifyEmail()
-        {
-            $this->forceFill([
-                'email_verified_at' => now(),
-            ])->save();
-        }
+    public function verifyEmail()
+    {
+        $this->forceFill([
+            'email_verified_at' => now(),
+        ])->save();
+    }
 }