for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Xoositemap module
*
* You may not change or alter any portion of this comment or credits
* of supporting developers from this source code or any supporting source code
* which is considered copyrighted (c) material of the original comment or credit authors.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* @copyright XOOPS Project (https://xoops.org)
* @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
* @package Xoositemap
* @since 2.6.0
* @author Laurent JEN (Aka DuGris)
*/
use Xoops\Core\PreloadItem;
* Class XoositemapPreload
class XoositemapPreload extends PreloadItem
{
* @param $args
public static function eventCoreIncludeCommonEnd($args)
$args
If this is a false-positive, you can also ignore this issue in your code via the ignore-unused annotation
ignore-unused
public static function eventCoreIncludeCommonEnd(/** @scrutinizer ignore-unused */ $args)
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.
require_once __DIR__ . '/autoloader.php';
}
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.