1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-31 15:24:31 +03:00

Added further attribute endpoints and added tests

This commit is contained in:
Dan Brown
2016-05-07 14:29:43 +01:00
parent c99653f0f2
commit fcfb9470c9
14 changed files with 282 additions and 27 deletions

View 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();
}