for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* extcal 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 http://www.fsf.org/copyleft/gpl.html GNU public license
* @since 2.2
* @author JJDai <http://xoops.kiolo.com>
**/
//----------------------------------------------------
class Extcal_2_34
{
* @param \XoopsModule $module
* @param $options
*/
public function __construct(\XoopsModule $module, $options)
$options
If this is a false-positive, you can also ignore this issue in your code via the ignore-unused annotation
ignore-unused
public function __construct(\XoopsModule $module, /** @scrutinizer ignore-unused */ $options)
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.
$module
public function __construct(/** @scrutinizer ignore-unused */ \XoopsModule $module, $options)
global $xoopsDB;
$this->alterTable_etablissement();
}
public function alterTable_etablissement()
$tbl = $xoopsDB->prefix('extcal_etablissement');
$sql = <<<__sql__
ALTER TABLE `{$tbl}`
CHANGE `desc` `description` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;
__sql__;
$xoopsDB->queryF($sql);
//echo "<hr>{$sql}<hr>";
//-----------------------------------------------------------------
} // fin de la classe
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.