]> BookStack Code Mirror - bookstack/blobdiff - app/Entity.php
Added further attribute endpoints and added tests
[bookstack] / app / Entity.php
index abf3e834ede4b129c2e467f55476e28e67fde725..79ff9ff38616ba3b8d849e37d52d958ce9a2b90d 100644 (file)
@@ -1,7 +1,7 @@
 <?php namespace BookStack;
 
 
-abstract class Entity extends Ownable
+class Entity extends Ownable
 {
 
     /**
@@ -200,11 +200,5 @@ abstract class Entity extends Ownable
 
         return $search->orderBy('title_relevance', 'desc');
     }
-
-    /**
-     * Get the url for this item.
-     * @return string
-     */
-    abstract public function getUrl();
-
+    
 }