]> BookStack Code Mirror - bookstack/blobdiff - app/Entities/Models/SearchTerm.php
Updated attachment links to have dropdown for open type
[bookstack] / app / Entities / Models / SearchTerm.php
index f55cb8407b34c9ce5b4a1bf672178f320c840db5..4ec8d6c45ac1ad027322d0ccbb26fec418e9e468 100644 (file)
@@ -1,15 +1,17 @@
-<?php namespace BookStack\Entities\Models;
+<?php
+
+namespace BookStack\Entities\Models;
 
 use BookStack\Model;
 
 class SearchTerm extends Model
 {
-
     protected $fillable = ['term', 'entity_id', 'entity_type', 'score'];
     public $timestamps = false;
 
     /**
-     * Get the entity that this term belongs to
+     * Get the entity that this term belongs to.
+     *
      * @return \Illuminate\Database\Eloquent\Relations\MorphTo
      */
     public function entity()