Skip to content

Commit 3f231d6

Browse files
authored
Merge pull request #36271 from nextcloud/fix/fix-codestyle
Fix codestyle using codesniffer
2 parents 473c546 + f5c361c commit 3f231d6

File tree

887 files changed

+430
-1320
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

887 files changed

+430
-1320
lines changed

build/OCPSinceChecker.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
* this class checks all methods for the presence of the @since tag
2929
*/
3030
class SinceTagCheckVisitor extends \PhpParser\NodeVisitorAbstract {
31-
3231
/** @var string */
3332
protected $namespace = '';
3433
/** @var string */

build/integration/features/bootstrap/Avatar.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
require __DIR__ . '/../../vendor/autoload.php';
2727

2828
trait Avatar {
29-
3029
/** @var string **/
3130
private $lastAvatar;
3231

build/integration/features/bootstrap/BasicStructure.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ trait BasicStructure {
7373
protected $remoteBaseUrl;
7474

7575
public function __construct($baseUrl, $admin, $regular_user_password) {
76-
7776
// Initialize your context here
7877
$this->baseUrl = $baseUrl;
7978
$this->adminUser = $admin;

build/integration/features/bootstrap/ContactsMenu.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
use PHPUnit\Framework\Assert;
2424

2525
trait ContactsMenu {
26-
2726
// BasicStructure trait is expected to be used in the class that uses this
2827
// trait.
2928

build/integration/features/bootstrap/Download.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
require __DIR__ . '/../../vendor/autoload.php';
2727

2828
trait Download {
29-
3029
/** @var string **/
3130
private $downloadedFile;
3231

build/integration/features/bootstrap/Mail.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
*
2222
*/
2323
trait Mail {
24-
2524
// CommandLine trait is expected to be used in the class that uses this
2625
// trait.
2726

build/integration/features/bootstrap/Search.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
use PHPUnit\Framework\Assert;
2525

2626
trait Search {
27-
2827
// BasicStructure trait is expected to be used in the class that uses this
2928
// trait.
3029

build/integration/features/bootstrap/TalkContext.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
use Behat\Behat\Context\Context;
2424

2525
class TalkContext implements Context {
26-
2726
/**
2827
* @BeforeFeature @Talk
2928
* @BeforeScenario @Talk

build/integration/features/bootstrap/Trashbin.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
* Trashbin functions
3232
*/
3333
trait Trashbin {
34-
3534
// WebDav trait is expected to be used in the class that uses this trait.
3635

3736
/**

core/Command/App/ListApps.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ protected function writeAppList(InputInterface $input, OutputInterface $output,
107107

108108
$output->writeln('Disabled:');
109109
parent::writeArrayInOutputFormat($input, $output, $items['disabled']);
110-
break;
110+
break;
111111

112112
default:
113113
parent::writeArrayInOutputFormat($input, $output, $items);
114-
break;
114+
break;
115115
}
116116
}
117117

0 commit comments

Comments
 (0)