Skip to content

Commit

Permalink
Fixed references to GetCacheIdEvent::cacheId
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksantamaria committed May 14, 2024
1 parent 17eed53 commit 4a11c69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Event/GetCacheIdEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class GetCacheIdEvent extends Event {
*/
public function __construct(Request $request, string $cache_id) {
$this->request = $request;
$this->cache_id = $cache_id;
$this->cacheId = $cache_id;
}

/**
Expand All @@ -46,7 +46,7 @@ public function __construct(Request $request, string $cache_id) {
* Cache id
*/
public function getCacheId(): string {
return $this->cache_id;
return $this->cacheId;
}

/**
Expand All @@ -56,7 +56,7 @@ public function getCacheId(): string {
* The new cache id.
*/
public function setCacheId(string $cache_id) {
$this->cache_id = $cache_id;
$this->cacheId = $cache_id;
}

/**
Expand Down

0 comments on commit 4a11c69

Please sign in to comment.