0
0
mirror of https://github.com/nextcloud/server.git synced 2025-01-01 18:00:09 +00:00
nextcloud_server/cypress/fixtures/testapp/lib/AppInfo/Application.php
Andy Scherzinger 5c49a54801
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-26 20:05:04 +02:00

19 lines
361 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\TestApp\AppInfo;
use OCP\AppFramework\App;
class Application extends App {
public const APP_ID = 'testapp';
public function __construct() {
parent::__construct(self::APP_ID);
}
}