1234567891011121314151617181920212223 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\PageCache\Test\Unit\Block\Controller;
- use Magento\Framework\DataObject\IdentityInterface;
- use Magento\Framework\View\Element\AbstractBlock;
- class StubBlock extends AbstractBlock implements IdentityInterface
- {
- /**
- * Return identifiers for produced content
- *
- * @return array
- */
- public function getIdentities()
- {
- return ['identity1', 'identity2'];
- }
- }
|