labo86/temple_core

View on GitHub

Showing 3 of 3 total issues

Function fillTemplate has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    public function fillTemplate(string $current_directory, string $output_directory) {
        if ( !$this->isDirForPhar($current_directory) )
            throw new ExceptionWithData("current directory does not exists", [ "current_directory" => $current_directory, "output_directory" => $output_directory]);
        if ( file_exists($output_directory) )
            throw new ExceptionWithData("output directory exists", [ "current_directory" => $current_directory, "output_directory" => $output_directory]);
Severity: Minor
Found in src/TemplateFiller.php - About 55 mins to fix

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 filesToReplace has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    public function filesToReplace(string $path) {
        foreach ( new DirectoryIterator($path) as $file_info ) {
            $absolute_filename = $file_info->getRealPath();
            $output_filename = $file_info->getBasename();
            if ( $file_info->isDot() ) continue;
Severity: Minor
Found in src/TemplateFiller.php - About 35 mins to fix

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 buildReplacementMapFromCommandLineArgs has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    public static function buildReplacementMapFromCommandLineArgs(array $args) : array {
        $replacement_map  = [];
        while ( true ) {
            $position = array_search('-d', $args);
            if ( $position === FALSE ) return $replacement_map;
Severity: Minor
Found in src/TemplateFiller.php - About 35 mins to fix

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

Severity
Category
Status
Source
Language