Showing 5 of 17 total issues
Method abbc3_bbcodes
has 57 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function abbc3_bbcodes()
{
return array(
// These exist in core
'b',
Method faq
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function faq()
{
// Set the block template data
$this->template->assign_block_vars('faq_block', [
'BLOCK_TITLE' => $this->language->lang('ABBC3_FAQ_TITLE'),
Method update_schema
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function update_schema()
{
return array(
'drop_tables' => array(
$this->table_prefix . 'clicks',
Function bbvideo
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
Open
public function bbvideo(Configurator $configurator)
{
if (!isset($configurator->BBCodes['bbvideo']))
{
return;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function clear_reparsers
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
public function clear_reparsers()
{
/** @var \phpbb\textreparser\manager $reparser_manager */
$reparser_manager = $this->container->get('text_reparser.manager');
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"