From 8c3dbce34004210eade2de90972b16841cc77fcf Mon Sep 17 00:00:00 2001 From: Kirill Nesmeyanov Date: Fri, 18 Jan 2019 12:09:29 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Storage/Drivers/Psr6Storage.php | 2 +- src/Storage/Proxy.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Storage/Drivers/Psr6Storage.php b/src/Storage/Drivers/Psr6Storage.php index 508c6aa..231eedb 100644 --- a/src/Storage/Drivers/Psr6Storage.php +++ b/src/Storage/Drivers/Psr6Storage.php @@ -49,7 +49,7 @@ public function __construct( \Closure $persist, int $timeout = self::DEFAULT_REMEMBER_TIME ) { - $this->pool = $pool; + $this->pool = $pool; $this->persist = $persist; $this->timeout = $timeout; } diff --git a/src/Storage/Proxy.php b/src/Storage/Proxy.php index 351ccea..70784a2 100644 --- a/src/Storage/Proxy.php +++ b/src/Storage/Proxy.php @@ -33,7 +33,7 @@ class Proxy implements Storage */ public function __construct(Storage $front, Storage $fallback) { - $this->front = $front; + $this->front = $front; $this->fallback = $fallback; }