Skip to content

Commit aa9c656

Browse files
committed
AC-8477: API page_cache/block/esi handles param enhancement
* Static errors fix
1 parent a46ae4e commit aa9c656

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

app/code/Magento/PageCache/Controller/Block.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ abstract class Block extends \Magento\Framework\App\Action\Action
6767
* @param Base64Json $base64jsonSerializer
6868
* @param LayoutCacheKeyInterface $layoutCacheKey
6969
* @param RegexFactory|null $regexValidatorFactory
70-
* @param ScopeConfigInterface|null $config
70+
* @param ScopeConfigInterface|null $scopeConfig
7171
*/
7272
public function __construct(
7373
\Magento\Framework\App\Action\Context $context,

app/code/Magento/PageCache/Model/Config.php

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,8 @@ public function getTtl()
152152
*
153153
* @param string $vclTemplatePath
154154
* @return string
155-
* @deprecated 100.2.0 see \Magento\PageCache\Model\VclGeneratorInterface::generateVcl
155+
* @deprecated 100.2.0
156+
* @see \Magento\PageCache\Model\VclGeneratorInterface::generateVcl
156157
*/
157158
public function getVclFile($vclTemplatePath)
158159
{
@@ -191,7 +192,8 @@ public function getVclFile($vclTemplatePath)
191192
* Prepare data for VCL config
192193
*
193194
* @return array
194-
* @deprecated 100.2.0 see \Magento\PageCache\Model\VclGeneratorInterface::generateVcl
195+
* @deprecated 100.2.0
196+
* @see \Magento\PageCache\Model\VclGeneratorInterface::generateVcl
195197
*/
196198
protected function _getReplacements()
197199
{
@@ -221,7 +223,8 @@ protected function _getReplacements()
221223
* }
222224
*
223225
* @return mixed|null|string
224-
* @deprecated 100.2.0 see \Magento\PageCache\Model\VclGeneratorInterface::generateVcl
226+
* @deprecated 100.2.0
227+
* @see \Magento\PageCache\Model\VclGeneratorInterface::generateVcl
225228
*/
226229
protected function _getAccessList()
227230
{
@@ -247,7 +250,8 @@ protected function _getAccessList()
247250
* we have to convert "/pattern/iU" into "(?Ui)pattern"
248251
*
249252
* @return string
250-
* @deprecated 100.2.0 see \Magento\PageCache\Model\VclGeneratorInterface::generateVcl
253+
* @deprecated 100.2.0
254+
* @see \Magento\PageCache\Model\VclGeneratorInterface::generateVcl
251255
*/
252256
protected function _getDesignExceptions()
253257
{

0 commit comments

Comments
 (0)