for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TYPO3Fluid\Fluid\Core\ViewHelper\Traits;
use TYPO3Fluid\Fluid\Core\Compiler\TemplateCompiler;
use TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\ViewHelperNode;
/**
* Class ParserRuntimeOnly
*/
trait ParserRuntimeOnly
{
* @return null
public function render()
return null;
}
* @param string $argumentsName
* @param string $closureName
* @param string $initializationPhpCode
* @param ViewHelperNode $node
* @param TemplateCompiler $compiler
public function compile($argumentsName, $closureName, &$initializationPhpCode, ViewHelperNode $node, TemplateCompiler $compiler)
$argumentsName
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$closureName
$initializationPhpCode
$node
$compiler
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.