Closed
Description
Preconditions
- Magento coding standard 4.0
Steps to reproduce
- Create Block with name AmpHtmlBlock.php with the following content:
<?php
namespace Block;
/**
* Class AmpHtmlBlock
*/
class AmpHtmlBlock
{
/**
*
*/
public function test()
{
$this->test();
}
}
Expected result
There shouldn't be any warnings
Actual result
FILE: .../Block/AmpHtmlBlock.php
-------------------------------------------------------------------------------------------
FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
-------------------------------------------------------------------------------------------
15 | WARNING | Usage of $this in template files is deprecated.
-------------------------------------------------------------------------------------------