diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2020-04-10 13:28:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-10 13:28:15 +0200 |
commit | 71b073839fc06e209d6c04934eb7fa918f48d1fa (patch) | |
tree | 27074d5403b67cbaf59d7b7181481ebe70af5d9e /apps/provisioning_api/tests | |
parent | d6e17fb01777866674129a5883c03642f4bfd4a5 (diff) | |
parent | 14c996d98256de958da367297c3313e0fa7ef9a8 (diff) | |
download | nextcloud-server-71b073839fc06e209d6c04934eb7fa918f48d1fa.tar.gz nextcloud-server-71b073839fc06e209d6c04934eb7fa918f48d1fa.zip |
Merge pull request #20402 from nextcloud/techdebt/elseif
Use elseif instead of else if
Diffstat (limited to 'apps/provisioning_api/tests')
-rw-r--r-- | apps/provisioning_api/tests/Controller/AppConfigControllerTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php b/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php index eb5ed1900b7..a87f69a25b3 100644 --- a/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php +++ b/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php @@ -214,7 +214,7 @@ class AppConfigControllerTest extends TestCase { ->method('verifyConfigKey'); $this->config->expects($this->never()) ->method('setAppValue'); - } else if ($keyThrows instanceof \Exception) { + } elseif ($keyThrows instanceof \Exception) { $api->expects($this->once()) ->method('verifyAppId') ->with($app); @@ -243,7 +243,7 @@ class AppConfigControllerTest extends TestCase { $this->assertSame($status, $result->getStatus()); if ($appThrows instanceof \Exception) { $this->assertEquals(['data' => ['message' => $appThrows->getMessage()]], $result->getData()); - } else if ($keyThrows instanceof \Exception) { + } elseif ($keyThrows instanceof \Exception) { $this->assertEquals(['data' => ['message' => $keyThrows->getMessage()]], $result->getData()); } else { $this->assertEquals([], $result->getData()); @@ -279,7 +279,7 @@ class AppConfigControllerTest extends TestCase { ->method('verifyConfigKey'); $this->config->expects($this->never()) ->method('deleteAppValue'); - } else if ($keyThrows instanceof \Exception) { + } elseif ($keyThrows instanceof \Exception) { $api->expects($this->once()) ->method('verifyAppId') ->with($app); @@ -308,7 +308,7 @@ class AppConfigControllerTest extends TestCase { $this->assertSame($status, $result->getStatus()); if ($appThrows instanceof \Exception) { $this->assertEquals(['data' => ['message' => $appThrows->getMessage()]], $result->getData()); - } else if ($keyThrows instanceof \Exception) { + } elseif ($keyThrows instanceof \Exception) { $this->assertEquals(['data' => ['message' => $keyThrows->getMessage()]], $result->getData()); } else { $this->assertEquals([], $result->getData()); |