]> BookStack Code Mirror - bookstack/blobdiff - app/Model.php
Reverted shift change to old migration
[bookstack] / app / Model.php
index 9ec2b7362790919ee393c25f2d7e0656d255e894..8520060f442efe78beed4a7a8159302e1f39f896 100644 (file)
@@ -1,19 +1,21 @@
-<?php namespace BookStack;
+<?php
+
+namespace BookStack;
 
 use Illuminate\Database\Eloquent\Model as EloquentModel;
 
 class Model extends EloquentModel
 {
-
     /**
      * Provides public access to get the raw attribute value from the model.
      * Used in areas where no mutations are required but performance is critical.
+     *
      * @param $key
+     *
      * @return mixed
      */
     public function getRawAttribute($key)
     {
         return parent::getAttributeFromArray($key);
     }
-
-}
\ No newline at end of file
+}