diff --git a/include/class-App.php b/include/class-App.php new file mode 100644 index 0000000..eafa9ad --- /dev/null +++ b/include/class-App.php @@ -0,0 +1,31 @@ +get( 'app_ID' ); + } + + /** + * Get the App name + * + * @return string + */ + public function getAppName() { + return $this->get( 'app_name' ); + } +} + +/** + * Class that can wrap an App retrieved from the database + */ +class App { + +}