flavioheleno/php-ext.com

View on GitHub

Showing 28 of 28 total issues

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

protected function execute(InputInterface $input, OutputInterface $output): int {
try {
// i/o styling
$io = new SymfonyStyle($input, $output);
$io->text(
Severity: Major
Found in src/Console/Build/BuilderCommand.php - About 1 day to fix

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

    protected function execute(InputInterface $input, OutputInterface $output): int {
    try {
    // i/o styling
    $io = new SymfonyStyle($input, $output);
    $io->text(
    Severity: Minor
    Found in src/Console/Build/BuilderCommand.php - About 7 hrs to fix

    File BuilderCommand.php has 463 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    declare(strict_types = 1);
     
    namespace App\Console\Build;
     
     
    Severity: Minor
    Found in src/Console/Build/BuilderCommand.php - About 7 hrs to fix

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

      protected function execute(InputInterface $input, OutputInterface $output): int {
      try {
      // i/o styling
      $io = new SymfonyStyle($input, $output);
      $io->text(
      Severity: Major
      Found in src/Console/Build/AddCommand.php - About 4 hrs to fix

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

        if (
        $skipMaxCheck === false &&
        $extension->getMaxRequiredPHP() !== '' &&
        version_compare($phpVersion, $extension->getMaxRequiredPHP(), '>')
        ) {
        Severity: Major
        Found in src/Console/Build/BuilderCommand.php and 1 other location - About 3 hrs to fix
        src/Console/Build/BuilderCommand.php on lines 261..284

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

        if (
        $skipMinCheck === false &&
        $extension->getMinRequiredPHP() !== '' &&
        version_compare($phpVersion, $extension->getMinRequiredPHP(), '<')
        ) {
        Severity: Major
        Found in src/Console/Build/BuilderCommand.php and 1 other location - About 3 hrs to fix
        src/Console/Build/BuilderCommand.php on lines 286..309

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

        protected function execute(InputInterface $input, OutputInterface $output): int {
        try {
        // i/o styling
        $io = new SymfonyStyle($input, $output);
        $io->text(
        Severity: Major
        Found in src/Console/Maintenance/ClearDanglingCommand.php - About 3 hrs to fix

          Extension has 25 functions (exceeds 20 allowed). Consider refactoring.
          Open

          final class Extension {
          private string $name;
          private string $summary = '';
          private bool $disabled = false;
          private bool $pecl = true;
          Severity: Minor
          Found in src/Settings/Extension.php - About 2 hrs to fix

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

            protected function execute(InputInterface $input, OutputInterface $output): int {
            try {
            // i/o styling
            $io = new SymfonyStyle($input, $output);
            $io->text(
            Severity: Major
            Found in src/Console/Build/StatusCommand.php - About 2 hrs to fix

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

              public function getExtensionSpecs(string $extName = null): array {
              $this->loadJson('extensions.json');
              if ($extName !== null) {
              return $this->loadedContent['extensions.json'][$extName] ?? [];
              }
              Severity: Major
              Found in src/Utils/Config.php and 1 other location - About 2 hrs to fix
              src/Utils/Config.php on lines 77..93

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

              public function getOsSpecs(string $osName = null): array {
              $this->loadJson('operating-systems.json');
              if ($osName !== null) {
              return $this->loadedContent['operating-systems.json'][$osName] ?? [];
              }
              Severity: Major
              Found in src/Utils/Config.php and 1 other location - About 2 hrs to fix
              src/Utils/Config.php on lines 46..62

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

              if ($containerId !== null) {
              $io->text(
              sprintf(
              '[%s] > Removing container <options=bold;fg=cyan>%s</>',
              date('H:i:s'),
              Severity: Major
              Found in src/Console/Build/BuilderCommand.php and 1 other location - About 2 hrs to fix
              src/Console/Build/BuilderCommand.php on lines 435..459

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

              if ($imageId !== null) {
              $io->text(
              sprintf(
              '[%s] > Removing image <options=bold;fg=cyan>%s</>',
              date('H:i:s'),
              Severity: Major
              Found in src/Console/Build/BuilderCommand.php and 1 other location - About 2 hrs to fix
              src/Console/Build/BuilderCommand.php on lines 409..433

              Function generate has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
              Open

              public function generate(): Generator {
              $extList = [$this->extName];
              if ($this->extName === self::ANY) {
              $extList = $this->config->getExtensionList();
              }
              Severity: Minor
              Found in src/Utils/TagGenerator.php - About 1 hr to fix

              Method configure has 40 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              protected function configure(): void {
              $this
              ->setDescription('Execute a build task from the job queue')
              ->addOption(
              'sleep',
              Severity: Minor
              Found in src/Console/Build/BuilderCommand.php - About 1 hr to fix

                Method generate has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                public function generate(): Generator {
                $extList = [$this->extName];
                if ($this->extName === self::ANY) {
                $extList = $this->config->getExtensionList();
                }
                Severity: Minor
                Found in src/Utils/TagGenerator.php - About 1 hr to fix

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

                  protected function execute(InputInterface $input, OutputInterface $output): int {
                  try {
                  // i/o styling
                  $io = new SymfonyStyle($input, $output);
                  $io->text(
                  Severity: Minor
                  Found in src/Console/Build/AddCommand.php - About 55 mins to fix

                  Function fromArray has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                  Open

                  public static function fromArray(string $name, array $options = []): self {
                  $ext = new Extension($name);
                  if (isset($options['disabled']) === true && $options['disabled'] === true) {
                  $ext->disable();
                  }
                  Severity: Minor
                  Found in src/Settings/Extension.php - About 45 mins to fix

                  Similar blocks of code found in 2 locations. Consider refactoring.
                  Open

                  if ($extension->isPeclAvailable() === false && $job->payload['ver'] === 'pecl') {
                  $message = 'This extension is not available via PECL.';
                  $io->text(
                  sprintf(
                  '[%s] Skip: %s',
                  Severity: Minor
                  Found in src/Console/Build/BuilderCommand.php and 1 other location - About 45 mins to fix
                  src/Console/Build/BuilderCommand.php on lines 238..257

                  Similar blocks of code found in 2 locations. Consider refactoring.
                  Open

                  if ($extension->isZtsRequired() && substr($job->payload['php'], -4) !== '-zts') {
                  $message = 'This extension requires a thread-safe version of PHP.';
                  $io->text(
                  sprintf(
                  '[%s] Skip: %s',
                  Severity: Minor
                  Found in src/Console/Build/BuilderCommand.php and 1 other location - About 45 mins to fix
                  src/Console/Build/BuilderCommand.php on lines 217..236
                  Severity
                  Category
                  Status
                  Source
                  Language