Based on:
https://github.com/nextcloud/server/pull/38764#discussion_r1227630895
Signed-off-by: Faraz Samapoor <fsa@adlas.at>
use Symfony\Component\Console\Output\OutputInterface;
class Space extends Command {
- public function __construct(private FileUtils $fileUtils) {
+ public function __construct(
+ private FileUtils $fileUtils,
+ ) {
parent::__construct();
}
* @package OC\Core\Command\Integrity
*/
class CheckApp extends Base {
- public function __construct(private Checker $checker) {
+ public function __construct(
+ private Checker $checker,
+ ) {
parent::__construct();
}
* @package OC\Core\Command\Integrity
*/
class CheckCore extends Base {
- public function __construct(private Checker $checker) {
+ public function __construct(
+ private Checker $checker,
+ ) {
parent::__construct();
}