Completed
Push — master ( fc5eaa...427062 )
by Dan
03:22
created
Tests/Cache/CacheTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -16,19 +16,19 @@
 block discarded – undo
16 16
         $this->storageMock = $this->getMockBuilder('\Ds\Cache\Interfaces\CacheStorageInterface')
17 17
             ->getMock();
18 18
 
19
-        $this->cache = new Cache($this->storageMock,99);
19
+        $this->cache = new Cache($this->storageMock, 99);
20 20
     }
21 21
 
22
-    public function testConstructNullStorage(){
22
+    public function testConstructNullStorage() {
23 23
         $cache = new Cache();
24 24
         $storage = $cache->getCacheStorage();
25
-        $this->assertInstanceOf('\Ds\Cache\NullStorage',$storage);
25
+        $this->assertInstanceOf('\Ds\Cache\NullStorage', $storage);
26 26
     }
27 27
 
28
-    public function testConstructWithStorage(){
28
+    public function testConstructWithStorage() {
29 29
         $cache = new Cache($this->storageMock);
30 30
         $storage = $cache->getCacheStorage();
31
-        $this->assertSame($this->storageMock,$storage);
31
+        $this->assertSame($this->storageMock, $storage);
32 32
     }
33 33
 
34 34
     public function testHas()
Please login to merge, or discard this patch.