nextcloud /
server
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_Trashbin\AppInfo; |
||
| 25 | |||
| 26 | use OCP\AppFramework\App; |
||
| 27 | use OCA\Files_Trashbin\Expiration; |
||
| 28 | |||
| 29 | View Code Duplication | class Application extends App { |
|
|
0 ignored issues
–
show
|
|||
| 30 | public function __construct (array $urlParams = []) { |
||
| 31 | parent::__construct('files_trashbin', $urlParams); |
||
| 32 | |||
| 33 | $container = $this->getContainer(); |
||
| 34 | /* |
||
| 35 | * Register capabilities |
||
| 36 | */ |
||
| 37 | $container->registerCapability('OCA\Files_Trashbin\Capabilities'); |
||
| 38 | |||
| 39 | /* |
||
| 40 | * Register expiration |
||
| 41 | */ |
||
| 42 | $container->registerService('Expiration', function($c) { |
||
| 43 | return new Expiration( |
||
| 44 | $c->query('ServerContainer')->getConfig(), |
||
| 45 | $c->query('OCP\AppFramework\Utility\ITimeFactory') |
||
| 46 | ); |
||
| 47 | }); |
||
| 48 | } |
||
| 49 | } |
||
| 50 |
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.