Application.php 352 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. // SPDX-FileCopyrightText: Ferdinand Thiessen <opensource@fthiessen.de>
  4. // SPDX-License-Identifier: AGPL-3.0-or-later
  5. namespace OCA\TestApp\AppInfo;
  6. use OCP\AppFramework\App;
  7. class Application extends App {
  8. public const APP_ID = 'testapp';
  9. public function __construct() {
  10. parent::__construct(self::APP_ID);
  11. }
  12. }