Skip to content
This repository has been archived by the owner on Nov 29, 2022. It is now read-only.

Commit

Permalink
## [0.18.1] - 2020-02-21
Browse files Browse the repository at this point in the history
### Fixed
- Fixed property `client` to protected in `RedisCache`
  • Loading branch information
문정기 committed Feb 21, 2020
1 parent 55ac2c9 commit bb7fa6f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.18.1] - 2020-02-21
### Fixed
- Fixed property `client` to protected in `RedisCache`

## [0.18.0] - 2020-02-21
### Add
- Add `RedisCache`
Expand Down
2 changes: 1 addition & 1 deletion lib/Cache/RedisCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class RedisCache
{
/** @var Client|null */
private $client;
protected $client;

public function __construct(string $host, int $port = 6379)
{
Expand Down

0 comments on commit bb7fa6f

Please sign in to comment.