]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix identation
authorDaniel Calviño Sánchez <danxuliu@gmail.com>
Fri, 5 Mar 2021 20:28:11 +0000 (21:28 +0100)
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>
Mon, 8 Mar 2021 07:59:34 +0000 (07:59 +0000)
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
tests/acceptance/features/bootstrap/AppsManagementContext.php

index b692e77ca60f15a2f9fe980d19fff47f66c69a7c..2b53ee3222b026846f7c53f9087bc4d47034d3bc 100644 (file)
@@ -33,8 +33,8 @@ class AppsManagementContext implements Context, ActorAwareInterface {
         */
        public static function enableButtonForApp($app) {
                return Locator::forThe()->button("Enable")->
-                       descendantOf(self::rowForApp($app))->
-                       describedAs("Enable button in the app list for $app");
+                               descendantOf(self::rowForApp($app))->
+                               describedAs("Enable button in the app list for $app");
        }
 
        /**
@@ -42,8 +42,8 @@ class AppsManagementContext implements Context, ActorAwareInterface {
         */
        public static function downloadAndEnableButtonForApp($app) {
                return Locator::forThe()->button("Download and enable")->
-               descendantOf(self::rowForApp($app))->
-               describedAs("Download & enable button in the app list for $app");
+                               descendantOf(self::rowForApp($app))->
+                               describedAs("Download & enable button in the app list for $app");
        }
 
        /**
@@ -51,8 +51,8 @@ class AppsManagementContext implements Context, ActorAwareInterface {
         */
        public static function disableButtonForApp($app) {
                return Locator::forThe()->button("Disable")->
-               descendantOf(self::rowForApp($app))->
-               describedAs("Disable button in the app list for $app");
+                               descendantOf(self::rowForApp($app))->
+                               describedAs("Disable button in the app list for $app");
        }
 
        /**
@@ -60,7 +60,7 @@ class AppsManagementContext implements Context, ActorAwareInterface {
         */
        public static function bundleButton($bundle) {
                return Locator::forThe()->xpath("//main[@id='app-content' or contains(@class, 'app-content')]//div[@class='apps-header']/h2[normalize-space() = '$bundle']/input")->
-               describedAs("Button to enable / disable bundles");
+                               describedAs("Button to enable / disable bundles");
        }
 
        /**
@@ -76,7 +76,7 @@ class AppsManagementContext implements Context, ActorAwareInterface {
         */
        public static function emptyAppList() {
                return Locator::forThe()->xpath("//main[@id='app-content' or contains(@class, 'app-content')]//div[@id='apps-list-empty']")->
-                       describedAs("Empty apps list view");
+                               describedAs("Empty apps list view");
        }
 
        /**
@@ -84,7 +84,7 @@ class AppsManagementContext implements Context, ActorAwareInterface {
         */
        public static function appEntries() {
                return Locator::forThe()->xpath("//main[@id='app-content' or contains(@class, 'app-content')]//div[@class='section']")->
-                       describedAs("Entries in apps list");
+                               describedAs("Entries in apps list");
        }
 
        /**
@@ -92,8 +92,8 @@ class AppsManagementContext implements Context, ActorAwareInterface {
         */
        public static function disabledAppEntries() {
                return Locator::forThe()->button("Disable")->
-               descendantOf(self::appEntries())->
-               describedAs("Disable button in the app list");
+                               descendantOf(self::appEntries())->
+                               describedAs("Disable button in the app list");
        }
 
        /**
@@ -101,8 +101,8 @@ class AppsManagementContext implements Context, ActorAwareInterface {
         */
        public static function enabledAppEntries() {
                return Locator::forThe()->button("Enable")->
-               descendantOf(self::appEntries())->
-               describedAs("Enable button in the app list");
+                               descendantOf(self::appEntries())->
+                               describedAs("Enable button in the app list");
        }
 
        /**
@@ -110,7 +110,7 @@ class AppsManagementContext implements Context, ActorAwareInterface {
         */
        public static function sidebar() {
                return Locator::forThe()->xpath("//*[@id=\"app-sidebar\" or contains(@class, 'app-sidebar')]")->
-               describedAs("Sidebar in apps management");
+                               describedAs("Sidebar in apps management");
        }