diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-10-05 21:31:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-05 21:31:38 +0200 |
commit | 0f7fb7cb4e296f6b90d668eb9cd01bcd6ef0c582 (patch) | |
tree | 76aa76c1c7e7b03281d581126bb521df7844a5d1 /apps/provisioning_api/tests | |
parent | 1ad0631c661b64d670f1a61dfd46b7de2addb8d8 (diff) | |
parent | d9015a8c94bfd71fe484618a06d276701d3bf9ff (diff) | |
download | nextcloud-server-0f7fb7cb4e296f6b90d668eb9cd01bcd6ef0c582.tar.gz nextcloud-server-0f7fb7cb4e296f6b90d668eb9cd01bcd6ef0c582.zip |
Merge pull request #23189 from nextcloud/enhancement/cs/binary_operator_spaces
Format code to a single space around binary operators
Diffstat (limited to 'apps/provisioning_api/tests')
-rw-r--r-- | apps/provisioning_api/tests/Controller/AppsControllerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/provisioning_api/tests/Controller/AppsControllerTest.php b/apps/provisioning_api/tests/Controller/AppsControllerTest.php index 28867f0b80b..88125a93488 100644 --- a/apps/provisioning_api/tests/Controller/AppsControllerTest.php +++ b/apps/provisioning_api/tests/Controller/AppsControllerTest.php @@ -101,7 +101,7 @@ class AppsControllerTest extends \OCA\Provisioning_API\Tests\TestCase { $result = $this->api->getApps('disabled'); $data = $result->getData(); $apps = (new \OC_App)->listAllApps(); - $list = []; + $list = []; foreach ($apps as $app) { $list[] = $app['id']; } |