/**
  * {@inheritDoc}
  *
  * @param StorageInterface $cacheStorage
  */
 public function __construct(ObjectManager $objectManager, StorageInterface $cacheStorage = null)
 {
     parent::__construct($objectManager);
     if (null !== $cacheStorage) {
         $this->setCacheStorage($cacheStorage);
     }
 }