Completed
Push — master ( 66d1fe...df1e36 )
by Mehmet
04:46
created
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 
4 4
 use Composer\Autoload\ClassLoader;
5 5
 
6
-require_once dirname(__DIR__) . '/vendor/autoload.php';
6
+require_once dirname(__DIR__).'/vendor/autoload.php';
7 7
 $loader = new ClassLoader();
8 8
 $loader->add('tests', dirname(__DIR__));
9 9
 $loader->register();
Please login to merge, or discard this patch.
tests/MemcachedCacheTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@  discard block
 block discarded – undo
21 21
 
22 22
     public function testSetGetDeleteItem()
23 23
     {
24
-        $ins1 = $this->client->set('test1','value1');
24
+        $ins1 = $this->client->set('test1', 'value1');
25 25
         $this->assertTrue($ins1);
26 26
         $value1 = $this->client->get('test1');
27
-        $this->assertEquals('value1',$value1);
27
+        $this->assertEquals('value1', $value1);
28 28
         $delete = $this->client->delete('test1');
29 29
         $this->assertTrue($delete);
30 30
     }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         $this->assertEquals(0, $counter_d_0);
71 71
     }
72 72
 
73
-    public function testClear(){
73
+    public function testClear() {
74 74
         $clear = $this->client->clear();
75 75
         $this->assertTrue($clear);
76 76
     }
Please login to merge, or discard this patch.
src/MemcachedCache.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -16,10 +16,10 @@  discard block
 block discarded – undo
16 16
      */
17 17
     public function __construct(array $config)
18 18
     {
19
-        $this->handler= new \Memcached($config['bucket']);
19
+        $this->handler = new \Memcached($config['bucket']);
20 20
         $this->handler->setOption(\Memcached::OPT_LIBKETAMA_COMPATIBLE, true);
21 21
         $this->handler->setOption(\Memcached::OPT_BINARY_PROTOCOL, true);
22
-        if(\Memcached::HAVE_IGBINARY){
22
+        if (\Memcached::HAVE_IGBINARY) {
23 23
             ini_set("memcached.serializer", "igbinary");
24 24
         }
25 25
         if (!count($this->handler->getServerList())) {
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      *
53 53
      * @return bool True on success and false on failure
54 54
      */
55
-    public function set($key, $value, $ttl = null){
55
+    public function set($key, $value, $ttl = null) {
56 56
         return $this->handler->set($key, $value, intval($ttl));
57 57
     }
58 58
     /**
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      *
63 63
      * @return bool True on success and false on failure
64 64
      */
65
-    public function delete($key){
65
+    public function delete($key) {
66 66
         return (bool) $this->handler->delete($key);
67 67
     }
68 68
     /**
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      *
71 71
      * @return bool True on success and false on failure
72 72
      */
73
-    public function clear(){
73
+    public function clear() {
74 74
         return $this->handler->flush();
75 75
     }
76 76
     /**
Please login to merge, or discard this patch.