]> BookStack Code Mirror - bookstack/blobdiff - app/Auth/Role.php
Apply fixes from StyleCI
[bookstack] / app / Auth / Role.php
index 59b1f547c13f527b7f9bd19d524525a9415e1972..94ba39d1d1f15fb7952f51fa18664a6440e3ae95 100644 (file)
@@ -1,4 +1,6 @@
-<?php namespace BookStack\Auth;
+<?php
+
+namespace BookStack\Auth;
 
 use BookStack\Auth\Permissions\JointPermission;
 use BookStack\Auth\Permissions\RolePermission;
@@ -9,8 +11,9 @@ use Illuminate\Database\Eloquent\Relations\BelongsToMany;
 use Illuminate\Database\Eloquent\Relations\HasMany;
 
 /**
- * Class Role
- * @property int $id
+ * Class Role.
+ *
+ * @property int    $id
  * @property string $display_name
  * @property string $description
  * @property string $external_auth_id
@@ -18,7 +21,6 @@ use Illuminate\Database\Eloquent\Relations\HasMany;
  */
 class Role extends Model implements Loggable
 {
-
     protected $fillable = ['display_name', 'description', 'external_auth_id'];
 
     /**
@@ -56,6 +58,7 @@ class Role extends Model implements Loggable
                 return true;
             }
         }
+
         return false;
     }