Skip to content

Commit

Permalink
fix: more linting in MomentoCcaheBackendFactory.php
Browse files Browse the repository at this point in the history
  • Loading branch information
rishtigupta committed Mar 12, 2024
1 parent 80ac202 commit 4d9a738
Showing 1 changed file with 17 additions and 12 deletions.
29 changes: 17 additions & 12 deletions src/MomentoCacheBackendFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,32 +14,37 @@ class MomentoCacheBackendFactory implements CacheFactoryInterface {

/**
* The Momento client factory.
*
* @var \Drupal\momento_cache\Client\MomentoClientFactory
*/
private $momentoFactory;

/**
* The cache tags checksum provider.
*
* @var \Drupal\Core\Cache\CacheTagsChecksumInterface
*/
private $checksumProvider;

/**
* The cache name.
* @var string
*/
/**
* The cache name.
*
* @var string
*/
private static $cacheName;

/**
* The Momento client.
* @var \Momento\Cache\CacheClient
*/
/**
* The Momento client.
*
* @var \Momento\Cache\CacheClient
*/
private $client;

/**
* The cache backends.
* @var array
*/
/**
* The cache backends.
*
* @var array
*/
private $backends = [];

/**
Expand Down

0 comments on commit 4d9a738

Please sign in to comment.