Skip to content

Commit c5b72a4

Browse files
committed
Merge pull request #8 from fervo/master
Fixed (inconsistent) spelling error
2 parents 40ce428 + 12892f1 commit c5b72a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/CacheItem.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ class CacheItem implements HasExpirationDateInterface, CacheItemInterface, Tagga
4747
* @param string $key
4848
* @param bool $hasValue
4949
* @param mixed $value
50-
* @param \DateTimeInterface|null $experationDate
50+
* @param \DateTimeInterface|null $expirationDate
5151
*/
52-
public function __construct($key, $hasValue = false, $value = null, \DateTimeInterface $experationDate = null)
52+
public function __construct($key, $hasValue = false, $value = null, \DateTimeInterface $expirationDate = null)
5353
{
5454
$this->taggedKey = $key;
5555
$this->key = $this->getKeyFromTaggedKey($key);
5656
$this->hasValue = $hasValue;
57-
$this->experationDate = $experationDate;
57+
$this->expirationDate = $expirationDate;
5858

5959
if ($hasValue) {
6060
$this->value = $value;

0 commit comments

Comments
 (0)