Passed
Branch master (7b1276)
by Marcel
06:24
created

Application::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
/**
3
 * Data Analytics
4
 *
5
 * This file is licensed under the Affero General Public License version 3 or
6
 * later. See the LICENSE.md file.
7
 *
8
 * @author Marcel Scherello <[email protected]>
9
 * @copyright 2019 Marcel Scherello
10
 */
11
12
namespace OCA\Analytics\AppInfo;
13
14
use OCP\AppFramework\App;
15
16
class Application extends App {
17
18
	public function __construct(array $urlParams = array()) {
19
20
        parent::__construct('analytics', $urlParams);
21
	}
22
}
23