artur-graniszewski/ZEUS-for-PHP

View on GitHub
src/Zeus/Kernel/ProcessManager/Scheduler.php

Summary

Maintainability
D
1 day
Test Coverage

File Scheduler.php has 387 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace Zeus\Kernel\ProcessManager;

use Zend\EventManager\EventInterface;
Severity: Minor
Found in src/Zeus/Kernel/ProcessManager/Scheduler.php - About 5 hrs to fix

    Scheduler has 29 functions (exceeds 20 allowed). Consider refactoring.
    Open

    final class Scheduler implements EventsCapableInterface
    {
        use LoggerHelper;
        use EventManager;
        use PluginRegistry;
    Severity: Minor
    Found in src/Zeus/Kernel/ProcessManager/Scheduler.php - About 3 hrs to fix

      Method start has 45 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function start($launchAsDaemon)
          {
              $this->startTime = microtime(true);
              $plugins = $this->getPluginRegistry()->count();
              $this->log(Logger::INFO, sprintf("Starting Scheduler with %d plugin%s", $plugins, $plugins !== 1 ? 's' : ''));
      Severity: Minor
      Found in src/Zeus/Kernel/ProcessManager/Scheduler.php - About 1 hr to fix

        Method handleMessages has 28 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected function handleMessages()
            {
                $this->schedulerStatus->updateStatus();
        
                /** @var Message[] $messages */
        Severity: Minor
        Found in src/Zeus/Kernel/ProcessManager/Scheduler.php - About 1 hr to fix

          Method getStatus has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function getStatus()
              {
                  $payload = [
                      'isEvent' => false,
                      'type' => Message::IS_STATUS_REQUEST,
          Severity: Minor
          Found in src/Zeus/Kernel/ProcessManager/Scheduler.php - About 1 hr to fix

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

                protected function handleMessages()
                {
                    $this->schedulerStatus->updateStatus();
            
                    /** @var Message[] $messages */
            Severity: Minor
            Found in src/Zeus/Kernel/ProcessManager/Scheduler.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

            Method __construct has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                public function __construct($config, Process $processService, LoggerInterface $logger, IpcAdapterInterface $ipcAdapter, DisciplineInterface $discipline)
            Severity: Minor
            Found in src/Zeus/Kernel/ProcessManager/Scheduler.php - About 35 mins to fix

              There are no issues that match your filters.

              Category
              Status