Completed
Push — stable9 ( 485cb1...e094cf )
by Lukas
26:41 queued 26:23
created

apps/files_versions/appinfo/application.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * @copyright Copyright (c) 2016, ownCloud, Inc.
4
 *
5
 * @author Roeland Jago Douma <[email protected]>
6
 * @author Victor Dubiniuk <[email protected]>
7
 *
8
 * @license AGPL-3.0
9
 *
10
 * This code is free software: you can redistribute it and/or modify
11
 * it under the terms of the GNU Affero General Public License, version 3,
12
 * as published by the Free Software Foundation.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
 * GNU Affero General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU Affero General Public License, version 3,
20
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
21
 *
22
 */
23
24
namespace OCA\Files_Versions\AppInfo;
25
26
use OCP\AppFramework\App;
27
use OCA\Files_Versions\Expiration;
28
29 View Code Duplication
class Application extends App {
0 ignored issues
show
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
30
	public function __construct(array $urlParams = array()) {
31
		parent::__construct('files_versions', $urlParams);
32
33
		$container = $this->getContainer();
34
35
		/*
36
		 * Register capabilities
37
		 */
38
		$container->registerCapability('OCA\Files_Versions\Capabilities');
39
40
		/*
41
		 * Register expiration
42
		 */
43
		$container->registerService('Expiration', function($c) {
44
			return  new Expiration(
45
				$c->query('ServerContainer')->getConfig(),
46
				$c->query('OCP\AppFramework\Utility\ITimeFactory')
47
			);
48
		});
49
	}
50
}
51