Пример #1
0
 public function __construct(AleInterfaceRequest $request, AleInterfaceCache $cache = null, array $config = array())
 {
     if (isset($config['cacheUpdateError']) && !is_array($config['cacheUpdateError'])) {
         $tmp = explode(',', $config['cacheUpdateError']);
         $config['cacheUpdateError'] = array();
         foreach ($tmp as $value) {
             if (trim($value)) {
                 $config['cacheUpdateError'][] = trim($value);
             }
         }
     }
     parent::__construct($request, $cache, $config);
 }
Пример #2
0
 public function __construct(AleInterfaceRequest $request, AleInterfaceCache $cache = null, array $config = array())
 {
     parent::__construct($request, $cache, $config);
 }