/**
  * Constructs the cache
  *
  * @param string $identifier A identifier which describes this cache
  * @param PhpCapableBackendInterface $backend Backend to be used for this cache
  */
 public function __construct($identifier, PhpCapableBackendInterface $backend)
 {
     parent::__construct($identifier, $backend);
 }