Insphpect

This tool is currently proof-of-concept. Your feedback and evaluation is valuable in helping to improve it and ensure its reports are meaninful.

Please click here to complete a short survey to tell us what you think. It should take less than 5 minutes and help further this research project!

Transphporm\Module\Functions

Detected issues

Issue Method Line number

Code

Click highlighted lines for details

<?php/* @description     Transformation Style Sheets - Revolutionising PHP templating    * * @author          Tom Butler tom@r.je                                             * * @copyright       2017 Tom Butler <tom@r.je> | https://r.je/                      * * @license         http://www.opensource.org/licenses/bsd-license.php  BSD License * * @version         1.2                                                             */namespace Transphporm\Module;use Transphporm\TSSFunction\Math;/** Assigns all the basic functions, data(), key(), iteration(), template(), etc    */class Functions implements \Transphporm\Module {	public function load(\Transphporm\Config $config) {		$functionSet = $config->getFunctionSet();		$baseDir = $config->getFilePath();		$functionSet->addFunction('attr', new \Transphporm\TSSFunction\Attr());		$functionSet->addFunction('data', new \Transphporm\TSSFunction\Data($config->getElementData(), $functionSet, 'data'));		$functionSet->addFunction('root', new \Transphporm\TSSFunction\Data($config->getElementData(), $functionSet, 'root'));		$functionSet->addFunction('key', new \Transphporm\TSSFunction\Data($config->getElementData(), $functionSet, 'key'));		$functionSet->addFunction('iteration', new \Transphporm\TSSFunction\Data($config->getElementData(), $functionSet, 'iteration'));		$templateFunction = new \Transphporm\TSSFunction\Template($config->getElementData(), $config->getCssToXpath(), $baseDir);		$functionSet->addFunction('template', $templateFunction);		$functionSet->addFunction('json', new \Transphporm\TSSFunction\Json($baseDir));        $functionSet->addFunction('constant', new \Transphporm\TSSFunction\Constant());		// Register HTML formatter here because it uses the template function		$config->registerFormatter(new \Transphporm\Formatter\HTMLFormatter($templateFunction));	}}