diff --git a/library/Icingadb/Compat/CompatObject.php b/library/Icingadb/Compat/CompatObject.php index 135f7d6c..fbb5962d 100644 --- a/library/Icingadb/Compat/CompatObject.php +++ b/library/Icingadb/Compat/CompatObject.php @@ -78,14 +78,6 @@ abstract class CompatObject extends MonitoredObject return $this->object->name; } - /** - * @throws NotImplementedError Don't use! - */ - protected function getDataView() - { - throw new NotImplementedError('getDataView() is not supported'); - } - public function getNotesUrls() { $notesUrl = $this->object->notes_url; @@ -98,4 +90,12 @@ abstract class CompatObject extends MonitoredObject MonitoredObject::parseAttributeUrls($notesUrl->notes_url) ); } + + /** + * @throws NotImplementedError Don't use! + */ + protected function getDataView() + { + throw new NotImplementedError('getDataView() is not supported'); + } }