yurii-github/my-library

View on GitHub

Showing 5 of 6 total issues

Function boot has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
Open

    protected static function boot()
    {
        parent::boot();

        $config = Container::getInstance()->get(Configuration::class);
Severity: Minor
Found in src/Models/Book.php - About 2 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 boot has 39 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected static function boot()
    {
        parent::boot();

        $config = Container::getInstance()->get(Configuration::class);
Severity: Minor
Found in src/Models/Book.php - About 1 hr to fix

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

        protected function populateNewProperties(stdClass $config)
        {
            $defaultConfig = $this->getDefaultConfiguration();
            $rf1 = new ReflectionObject($defaultConfig);
            /* @var $p_base ReflectionProperty */
    Severity: Minor
    Found in src/Configuration/Configuration.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

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

        public function extract(string $srcPdfFile)
        {
            if (!Str::endsWith($srcPdfFile, '.pdf')) {
                throw new InvalidBookFormatException("Unsupported book format for '{$srcPdfFile}'");
            }
    Severity: Minor
    Found in src/CoverExtractor.php - About 1 hr to fix

      Method getDefaultConfiguration has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function getDefaultConfiguration(): object
          {
              return (object)[
                  'system' => (object)[
                      'version' => $this->getVersion(),
      Severity: Minor
      Found in src/Configuration/Configuration.php - About 1 hr to fix
        Severity
        Category
        Status
        Source
        Language