Total Complexity | 4 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
15 | class AppInfo { |
||
16 | |||
17 | public const APP_ID = 'music'; |
||
18 | |||
19 | public static function getVersion() : string { |
||
27 | } |
||
28 | } |
||
29 | |||
30 | public static function getVendor() : string { |
||
31 | $vendor = 'owncloud/nextcloud'; // this should get overridden by the next 'include' |
||
32 | include \OC::$SERVERROOT . '/version.php'; |
||
33 | return $vendor; |
||
34 | } |
||
35 | |||
36 | public static function getFullName() : string { |
||
38 | } |
||
39 | } |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.