]> BookStack Code Mirror - bookstack/blobdiff - app/Auth/SocialAccount.php
Reverted shift change to old migration
[bookstack] / app / Auth / SocialAccount.php
index 116cdc8546957a4071ad54bbc52aba5b8b6ede6c..6cf0224a8d362a2ae6c8bf282f615ad1038e96ad 100644 (file)
@@ -1,16 +1,18 @@
-<?php namespace BookStack\Auth;
+<?php
+
+namespace BookStack\Auth;
 
 use BookStack\Interfaces\Loggable;
 use BookStack\Model;
 
 /**
- * Class SocialAccount
+ * Class SocialAccount.
+ *
  * @property string $driver
- * @property User $user
+ * @property User   $user
  */
 class SocialAccount extends Model implements Loggable
 {
-
     protected $fillable = ['user_id', 'driver', 'driver_id', 'timestamps'];
 
     public function user()
@@ -19,7 +21,7 @@ class SocialAccount extends Model implements Loggable
     }
 
     /**
-     * @inheritDoc
+     * {@inheritdoc}
      */
     public function logDescriptor(): string
     {