Skip to content

Commit 0b3766d

Browse files
style(*): Pass through coding standards
1 parent 2f562bd commit 0b3766d

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/AbstractCache.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -571,9 +571,8 @@ private function configureAdapter(): void
571571
$this->adapter = new RedisTagAwareAdapter((RedisAdapter::createConnection($redisDsn)));
572572
} catch (Exception $e) {
573573
throw new BouncerException('Error when connecting to Redis.' .
574-
' Please fix the Redis DSN or select another cache technology.'.
575-
' Initial error was: '.$e->getMessage()
576-
);
574+
' Please fix the Redis DSN or select another cache technology.' .
575+
' Initial error was: ' . $e->getMessage());
577576
}
578577
break;
579578

src/RestClient/Curl.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ public function request(
5151
}
5252

5353
/**
54-
* @param $handle
55-
*
5654
* @return bool|string
5755
*/
5856
protected function exec($handle)
@@ -61,8 +59,6 @@ protected function exec($handle)
6159
}
6260

6361
/**
64-
* @param $handle
65-
*
6662
* @return mixed
6763
*/
6864
protected function getResponseHttpCode($handle)

0 commit comments

Comments
 (0)