Completed
Push — master ( 2f2930...469268 )
by Christopher
02:23
created
tests/ManagerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 {
15 15
     public function testInsert()
16 16
     {
17
-        Coroutine\create(function () {
17
+        Coroutine\create(function() {
18 18
             $factory = new ManagerFactory();
19 19
 
20 20
             $manager = $factory->create([
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      */
53 53
     private function assertEqualsAfterDelay($delay, $expected, $actual)
54 54
     {
55
-        Loop\timer($delay, function () use ($expected, $actual) {
55
+        Loop\timer($delay, function() use ($expected, $actual) {
56 56
             $this->assertEquals($expected, $actual);
57 57
             Loop\stop();
58 58
         });
Please login to merge, or discard this patch.