wikimedia/mediawiki-core

View on GitHub
maintenance/rebuildLocalisationCache.php

Summary

Maintainability
D
1 day
Test Coverage

Function execute has a Cognitive Complexity of 43 (exceeds 5 allowed). Consider refactoring.
Open

    public function execute() {
        $force = $this->hasOption( 'force' );
        $threads = $this->getOption( 'threads', 1 );
        if ( $threads < 1 || $threads != intval( $threads ) ) {
            $this->output( "Invalid thread count specified; running single-threaded.\n" );
Severity: Minor
Found in maintenance/rebuildLocalisationCache.php - About 6 hrs 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

Method execute has 111 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function execute() {
        $force = $this->hasOption( 'force' );
        $threads = $this->getOption( 'threads', 1 );
        if ( $threads < 1 || $threads != intval( $threads ) ) {
            $this->output( "Invalid thread count specified; running single-threaded.\n" );
Severity: Major
Found in maintenance/rebuildLocalisationCache.php - About 4 hrs to fix

    Method __construct has 35 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function __construct() {
            parent::__construct();
            $this->addDescription( 'Rebuild the localisation cache' );
            $this->addOption( 'dry-run', 'Determine what languages need to be rebuilt without changing anything' );
            $this->addOption( 'force', 'Rebuild all files, even ones not out of date' );
    Severity: Minor
    Found in maintenance/rebuildLocalisationCache.php - About 1 hr to fix

      Function doRebuild has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          private function doRebuild( $codes, $lc, $force ) {
              $numRebuilt = 0;
              $operation = $this->hasOption( 'dry-run' ) ? "Would rebuild" : "Rebuilding";
      
              foreach ( $codes as $code ) {
      Severity: Minor
      Found in maintenance/rebuildLocalisationCache.php - About 1 hr 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

      There are no issues that match your filters.

      Category
      Status