summaryrefslogtreecommitdiffstats
path: root/tests/Core/Command/Group/DeleteTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Core/Command/Group/DeleteTest.php')
-rw-r--r--tests/Core/Command/Group/DeleteTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Core/Command/Group/DeleteTest.php b/tests/Core/Command/Group/DeleteTest.php
index 69bdae99d63..60d41d2e24c 100644
--- a/tests/Core/Command/Group/DeleteTest.php
+++ b/tests/Core/Command/Group/DeleteTest.php
@@ -57,7 +57,7 @@ class DeleteTest extends TestCase {
public function testDoesNotExists() {
$gid = 'myGroup';
$this->input->method('getArgument')
- ->willReturnCallback(function($arg) use ($gid) {
+ ->willReturnCallback(function ($arg) use ($gid) {
if ($arg === 'groupid') {
return $gid;
}
@@ -79,7 +79,7 @@ class DeleteTest extends TestCase {
public function testDeleteAdmin() {
$gid = 'admin';
$this->input->method('getArgument')
- ->willReturnCallback(function($arg) use ($gid) {
+ ->willReturnCallback(function ($arg) use ($gid) {
if ($arg === 'groupid') {
return $gid;
}
@@ -98,7 +98,7 @@ class DeleteTest extends TestCase {
public function testDeleteFailed() {
$gid = 'myGroup';
$this->input->method('getArgument')
- ->willReturnCallback(function($arg) use ($gid) {
+ ->willReturnCallback(function ($arg) use ($gid) {
if ($arg === 'groupid') {
return $gid;
}
@@ -124,7 +124,7 @@ class DeleteTest extends TestCase {
public function testDelete() {
$gid = 'myGroup';
$this->input->method('getArgument')
- ->willReturnCallback(function($arg) use ($gid) {
+ ->willReturnCallback(function ($arg) use ($gid) {
if ($arg === 'groupid') {
return $gid;
}