17 lines
		
	
	
		
			334 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			334 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
declare(strict_types=1);
 | 
						|
// SPDX-FileCopyrightText: Szabó Dávid <daevidt@gmail.com>
 | 
						|
// SPDX-License-Identifier: AGPL-3.0-or-later
 | 
						|
 | 
						|
namespace OCA\Nezd\AppInfo;
 | 
						|
 | 
						|
use OCP\AppFramework\App;
 | 
						|
 | 
						|
class Application extends App {
 | 
						|
	public const APP_ID = 'nezd';
 | 
						|
 | 
						|
	public function __construct() {
 | 
						|
		parent::__construct(self::APP_ID);
 | 
						|
	}
 | 
						|
}
 |