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 cb69080 commit 80ac202
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions src/MomentoCacheBackendFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,34 +12,34 @@
*/
class MomentoCacheBackendFactory implements CacheFactoryInterface {

/**
* The Momento client factory.
* @var \Drupal\momento_cache\Client\MomentoClientFactory
*/
/**
* 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 tags checksum provider.
* @var \Drupal\Core\Cache\CacheTagsChecksumInterface
*/
private $checksumProvider;

/**
* 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 80ac202

Please sign in to comment.