summaryrefslogtreecommitdiffstats
path: root/tests/lib/AppFramework/Utility/SimpleContainerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/AppFramework/Utility/SimpleContainerTest.php')
-rw-r--r--tests/lib/AppFramework/Utility/SimpleContainerTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/AppFramework/Utility/SimpleContainerTest.php b/tests/lib/AppFramework/Utility/SimpleContainerTest.php
index 8343c05e916..52908ed8839 100644
--- a/tests/lib/AppFramework/Utility/SimpleContainerTest.php
+++ b/tests/lib/AppFramework/Utility/SimpleContainerTest.php
@@ -158,7 +158,7 @@ class SimpleContainerTest extends \Test\TestCase {
}
public function testRegisterAliasService() {
- $this->container->registerService('test', function() {
+ $this->container->registerService('test', function () {
return new \StdClass;
}, true);
$this->container->registerAlias('test1', 'test');
@@ -183,7 +183,7 @@ class SimpleContainerTest extends \Test\TestCase {
* @dataProvider sanitizeNameProvider
*/
public function testSanitizeName($register, $query) {
- $this->container->registerService($register, function() {
+ $this->container->registerService($register, function () {
return 'abc';
});
$this->assertEquals('abc', $this->container->query($query));
@@ -199,7 +199,7 @@ class SimpleContainerTest extends \Test\TestCase {
}
public function testRegisterFactory() {
- $this->container->registerService('test', function() {
+ $this->container->registerService('test', function () {
return new \StdClass();
}, false);
$this->assertNotSame(
@@ -207,7 +207,7 @@ class SimpleContainerTest extends \Test\TestCase {
}
public function testRegisterAliasFactory() {
- $this->container->registerService('test', function() {
+ $this->container->registerService('test', function () {
return new \StdClass();
}, false);
$this->container->registerAlias('test1', 'test');