aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Traits
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2020-12-04 08:39:26 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2020-12-07 15:44:04 +0100
commit6a7e849090d2a07b65352ed6246999c28f91cd84 (patch)
tree7456183562d9ebbf7b9053b84b8c092e8aabc910 /tests/lib/Traits
parent54ef1a73afebfe66383b35090bdb75fc9ca1711e (diff)
downloadnextcloud-server-6a7e849090d2a07b65352ed6246999c28f91cd84.tar.gz
nextcloud-server-6a7e849090d2a07b65352ed6246999c28f91cd84.zip
php cs fix
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests/lib/Traits')
-rw-r--r--tests/lib/Traits/ClientServiceTrait.php2
-rw-r--r--tests/lib/Traits/EncryptionTrait.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/Traits/ClientServiceTrait.php b/tests/lib/Traits/ClientServiceTrait.php
index 60313d5fa7a..c35a57268f7 100644
--- a/tests/lib/Traits/ClientServiceTrait.php
+++ b/tests/lib/Traits/ClientServiceTrait.php
@@ -49,7 +49,7 @@ trait ClientServiceTrait {
*
* @since Method available since Release 3.0.0
*/
- abstract static public function any();
+ abstract public static function any();
protected function setUpClientServiceTrait() {
$this->clientService = $this->createMock(IClientService::class);
diff --git a/tests/lib/Traits/EncryptionTrait.php b/tests/lib/Traits/EncryptionTrait.php
index f0bbb138d44..6b74f7ca8ee 100644
--- a/tests/lib/Traits/EncryptionTrait.php
+++ b/tests/lib/Traits/EncryptionTrait.php
@@ -24,8 +24,8 @@ trait EncryptionTrait {
abstract protected function registerStorageWrapper($name, $wrapper);
// from phpunit
- abstract static protected function markTestSkipped(string $message = ''): void;
- abstract static protected function assertTrue($condition, string $message = ''): void;
+ abstract protected static function markTestSkipped(string $message = ''): void;
+ abstract protected static function assertTrue($condition, string $message = ''): void;
private $encryptionWasEnabled;