aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command/App/Update.php
Commit message (Collapse)AuthorAgeFilesLines
* refactor: Extend rector to core/refactor/rector-coreprovokateurin2025-05-151-1/+2
| | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* fix: Replace OC_App::getAllApps with a method in AppManagerCôme Chilliet2024-09-131-1/+1
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* style: update codestyle for coding-standard 1.2.3Daniel Kesselberg2024-08-251-1/+1
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* chore: Add SPDX headerAndy Scherzinger2024-05-261-24/+2
| | | | Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
* fix: Revert to OC_App in places where we need all apps even disabled onesCôme Chilliet2024-04-221-1/+1
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* fix: Migrate away from OC_App toward the IAppManagerCôme Chilliet2024-04-221-2/+5
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Add a return message for app updates trough occGit'Fellow2024-02-231-0/+10
| | | | | | | | | | | | | | | | Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> Handle single and all apps Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> Rewrite logic Fix psalm Fix psalm Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
* Merge pull request #39183 from shdehnavi/refactor_core_command_appJohn Molakvoæ2024-02-231-1/+1
|\
| * Refactor core/Command/AppHamid Dehnavi2023-09-291-1/+1
| | | | | | | | Signed-off-by: Hamid Dehnavi <hamid.dev.pro@gmail.com>
* | fix(Update): Handle upstream exception scenario cleanlyJosh Richards2023-12-261-0/+1
|/ | | | | Fixes #42476 Signed-off-by: Josh Richards <josh.t.richards@gmail.com>
* Uses PHP8's constructor property promotion.Faraz Samapoor2023-06-191-8/+5
| | | | | | in core/Command/App, /Background, and /Broadcast classes. Signed-off-by: Faraz Samapoor <fsa@adlas.at>
* Update core to PHP 7.4 standardCarl Schwan2022-05-201-14/+9
| | | | | | | - Typed properties - Port to LoggerInterface Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-041-3/+2
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Update the license headers for Nextcloud 20Christoph Wurst2020-08-241-0/+2
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Allow to update to nightlyJohn Molakvoæ (skjnldsv)2020-08-071-3/+8
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Add return value to all commandsJoas Schilling2020-06-261-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Format control structures, classes, methods and functionChristoph Wurst2020-04-101-3/+2
| | | | | | | | | | | | | | | To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use elseif instead of else ifChristoph Wurst2020-04-101-2/+2
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update the license headers for Nextcloud 19Christoph Wurst2020-03-311-0/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use the short array syntax, everywhereChristoph Wurst2020-03-261-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headersChristoph Wurst2019-12-051-1/+5
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Some php-cs fixesRoeland Jago Douma2019-11-221-3/+2
| | | | | | | | | | | * Order the imports * No leading slash on imports * Empty line before namespace * One line per import * Empty after imports * Emmpty line at bottom of file Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Log exception in case an app update failsMorris Jobke2018-11-011-1/+7
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Add occ app:update commandMichael Gerber2018-11-011-0/+119
Signed-off-by: Morris Jobke <hey@morrisjobke.de>