zendframework / zend-cache

BSD 3-Clause "New" or "Revised" License
69 stars 53 forks source link

Fix unused private $tz, add missing $utc private properties #190

Closed adrian-martinez-interactiv4 closed 4 years ago

adrian-martinez-interactiv4 commented 4 years ago

In code constructor, $this->utc referenced a non-existing property; at the same time, a DateTimeZone private property $tz was declared but not used.

It seems property got renamed somewhere in time in code usage, but not in property declaration.

Provide a narrative description of what you are trying to accomplish:

michalbundyra commented 4 years ago

Thanks, @adrian-martinez-interactiv4!