src/Comodojo/Cache/Providers/AbstractEnhancedProvider.php 1 location
|
@@ 48-56 (lines=9) @@
|
| 45 |
|
|
| 46 |
|
private $queue = []; |
| 47 |
|
|
| 48 |
|
public function __construct(array $properties = [], LoggerInterface $logger = null) { |
| 49 |
|
|
| 50 |
|
parent::__construct($logger); |
| 51 |
|
|
| 52 |
|
$this->properties = ClassProperties::create($this->default_properties)->merge($properties); |
| 53 |
|
|
| 54 |
|
$this->setId(UniqueId::generate(64)); |
| 55 |
|
|
| 56 |
|
} |
| 57 |
|
|
| 58 |
|
/** |
| 59 |
|
* {@inheritdoc} |
src/Comodojo/SimpleCache/Providers/AbstractEnhancedProvider.php 1 location
|
@@ 48-56 (lines=9) @@
|
| 45 |
|
|
| 46 |
|
private $queue = []; |
| 47 |
|
|
| 48 |
|
public function __construct(array $properties = [], LoggerInterface $logger = null) { |
| 49 |
|
|
| 50 |
|
parent::__construct($logger); |
| 51 |
|
|
| 52 |
|
$this->properties = ClassProperties::create($this->default_properties)->merge($properties); |
| 53 |
|
|
| 54 |
|
$this->setId(UniqueId::generate(64)); |
| 55 |
|
|
| 56 |
|
} |
| 57 |
|
|
| 58 |
|
public function getProperties() { |
| 59 |
|
|