forked from MageHack/BehatMage
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBlockHtmlCache.php
37 lines (36 loc) · 983 Bytes
/
BlockHtmlCache.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/**
* BehatMage
*
* NOTICE OF LICENSE
*
* This source file is subject to the MIT License, that is bundled with this
* package in the file LICENSE.
* It is also available through the world-wide-web at this URL:
*
* http://opensource.org/licenses/MIT
*
* If you did not receive a copy of the license and are unable to obtain it
* through the world-wide-web, please send an email
* to <magetest@sessiondigital.com> so we can send you a copy immediately.
*
* @category MageTest
* @package MagentoExtension
* @subpackage Service\Cache
*
* @copyright Copyright (c) 2012-2013 MageTest team and contributors.
*/
namespace MageTest\MagentoExtension\Service\Cache;
/**
* ConfigurationCache
*
* @category MageTest
* @package MagentoExtension
* @subpackage Service\Cache
*
* @author MageTest team (https://github.com/MageTest/BehatMage/contributors)
*/
class BlockHtmlCache extends BaseCache
{
protected $cacheTypes = array('block_html');
}