Showing 3 of 107 total issues
File documentation.php
has 453 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
<?php
include __DIR__.'/assets/header.php';
require_once __DIR__.'/authenticatron.php';
Function Authenticatron_Secret
has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring. Open
Open
function Authenticatron_Secret($Length = 16) {
global $Base32_Chars;
if (
- 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 Base32_Decode
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Open
function Base32_Decode($Secret) {
global $Base32_Chars;
// If there is no secret or it is too small.
- 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"