AJenbo/agcms

View on GitHub
application/inc/Http/Controllers/Admin/ExplorerController.php

Summary

Maintainability
F
4 days
Test Coverage
F
0%

File ExplorerController.php has 591 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace App\Http\Controllers\Admin;

use App\Exceptions\Exception;
Severity: Major
Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 1 day to fix

    Function buildSearchQuery has a Cognitive Complexity of 36 (exceeds 5 allowed). Consider refactoring.
    Open

        private function buildSearchQuery(string $qpath, string $qalt, string $qtype): string
        {
            $db = app(DbService::class);
            $qpath = $db->escapeWildcards($qpath);
            $qalt = $db->escapeWildcards($qalt);
    Severity: Minor
    Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 5 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

    The class ExplorerController has 20 public methods. Consider refactoring ExplorerController to keep number of public methods under 10.
    Open

    class ExplorerController extends AbstractAdminController
    {
        private FileService $fileService;
    
        public function __construct()

    TooManyPublicMethods

    Since: 0.1

    A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

    By default it ignores methods starting with 'get' or 'set'.

    Example

    Source https://phpmd.org/rules/codesize.html#toomanypublicmethods

    The class ExplorerController has an overall complexity of 127 which is very high. The configured complexity threshold is 50.
    Open

    class ExplorerController extends AbstractAdminController
    {
        private FileService $fileService;
    
        public function __construct()

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

    class ExplorerController extends AbstractAdminController
    {
        private FileService $fileService;
    
        public function __construct()
    Severity: Minor
    Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 2 hrs to fix

      Method buildSearchQuery has 58 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          private function buildSearchQuery(string $qpath, string $qalt, string $qtype): string
          {
              $db = app(DbService::class);
              $qpath = $db->escapeWildcards($qpath);
              $qalt = $db->escapeWildcards($qalt);
      Severity: Major
      Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 2 hrs to fix

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

            public function fileRename(Request $request, int $id): JsonResponse
            {
                try {
                    $file = app(OrmService::class)->getOne(File::class, $id);
                    if (!$file) {
        Severity: Minor
        Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 1 hr to fix

          Method folderRename has 37 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function folderRename(Request $request): JsonResponse
              {
                  $path = $request->getRequestString('path') ?? '';
                  $name = $request->getRequestString('name') ?? '';
                  $name = $this->fileService->cleanFileName($name);
          Severity: Minor
          Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 1 hr to fix

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

                public function image(Request $request, int $id): Response
                {
                    $file = app(OrmService::class)->getOne(File::class, $id);
                    if (!$file) {
                        throw new InvalidInput(_('File not found.'), Response::HTTP_NOT_FOUND);
            Severity: Minor
            Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 1 hr to fix

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

                  public function fileRename(Request $request, int $id): JsonResponse
                  {
                      try {
                          $file = app(OrmService::class)->getOne(File::class, $id);
                          if (!$file) {
              Severity: Minor
              Found in application/inc/Http/Controllers/Admin/ExplorerController.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 files has 27 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function files(Request $request): JsonResponse
                  {
                      $path = $request->query->get('path');
                      if (!is_string($path)) {
                          $path = '';
              Severity: Minor
              Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 1 hr to fix

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

                    public function search(Request $request): JsonResponse
                    {
                        $returnType = $request->query->get('return');
                        if (!is_string($returnType)) {
                            $returnType = '';
                Severity: Minor
                Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 1 hr to fix

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

                      public function imageSaveThumb(Request $request, int $id): Response
                      {
                          $file = app(OrmService::class)->getOne(File::class, $id);
                          if (!$file) {
                              throw new InvalidInput(_('File not found.'), Response::HTTP_NOT_FOUND);
                  Severity: Minor
                  Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 1 hr to fix

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

                        public function imageSave(Request $request, int $id): Response
                        {
                            $file = app(OrmService::class)->getOne(File::class, $id);
                            if (!$file) {
                                throw new InvalidInput(_('File not found.'), Response::HTTP_NOT_FOUND);
                    Severity: Minor
                    Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 1 hr to fix

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

                          public function files(Request $request): JsonResponse
                          {
                              $path = $request->query->get('path');
                              if (!is_string($path)) {
                                  $path = '';
                      Severity: Minor
                      Found in application/inc/Http/Controllers/Admin/ExplorerController.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 search has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function search(Request $request): JsonResponse
                          {
                              $returnType = $request->query->get('return');
                              if (!is_string($returnType)) {
                                  $returnType = '';
                      Severity: Minor
                      Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 45 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 image has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function image(Request $request, int $id): Response
                          {
                              $file = app(OrmService::class)->getOne(File::class, $id);
                              if (!$file) {
                                  throw new InvalidInput(_('File not found.'), Response::HTTP_NOT_FOUND);
                      Severity: Minor
                      Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 45 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 folderRename has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function folderRename(Request $request): JsonResponse
                          {
                              $path = $request->getRequestString('path') ?? '';
                              $name = $request->getRequestString('name') ?? '';
                              $name = $this->fileService->cleanFileName($name);
                      Severity: Minor
                      Found in application/inc/Http/Controllers/Admin/ExplorerController.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

                      Avoid too many return statements within this method.
                      Open

                                      return '';
                      Severity: Major
                      Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                        return "(
                                            mime IN(
                                                'application/pdf',
                                                'application/msword',
                                                'application/vnd.ms-%',
                        Severity: Major
                        Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                          return "mime = 'application/zip'";
                          Severity: Major
                          Found in application/inc/Http/Controllers/Admin/ExplorerController.php - About 30 mins to fix

                            The method buildSearchQuery() has an NPath complexity of 380490. The configured NPath complexity threshold is 200.
                            Open

                                private function buildSearchQuery(string $qpath, string $qalt, string $qtype): string
                                {
                                    $db = app(DbService::class);
                                    $qpath = $db->escapeWildcards($qpath);
                                    $qalt = $db->escapeWildcards($qalt);

                            NPathComplexity

                            Since: 0.1

                            The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                            Example

                            class Foo {
                                function bar() {
                                    // lots of complicated code
                                }
                            }

                            Source https://phpmd.org/rules/codesize.html#npathcomplexity

                            The method buildSearchQuery() has a Cyclomatic Complexity of 28. The configured cyclomatic complexity threshold is 10.
                            Open

                                private function buildSearchQuery(string $qpath, string $qalt, string $qtype): string
                                {
                                    $db = app(DbService::class);
                                    $qpath = $db->escapeWildcards($qpath);
                                    $qalt = $db->escapeWildcards($qalt);

                            CyclomaticComplexity

                            Since: 0.1

                            Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

                            Example

                            // Cyclomatic Complexity = 11
                            class Foo {
                            1   public function example() {
                            2       if ($a == $b) {
                            3           if ($a1 == $b1) {
                                            fiddle();
                            4           } elseif ($a2 == $b2) {
                                            fiddle();
                                        } else {
                                            fiddle();
                                        }
                            5       } elseif ($c == $d) {
                            6           while ($c == $d) {
                                            fiddle();
                                        }
                            7        } elseif ($e == $f) {
                            8           for ($n = 0; $n < $h; $n++) {
                                            fiddle();
                                        }
                                    } else {
                                        switch ($z) {
                            9               case 1:
                                                fiddle();
                                                break;
                            10              case 2:
                                                fiddle();
                                                break;
                            11              case 3:
                                                fiddle();
                                                break;
                                            default:
                                                fiddle();
                                                break;
                                        }
                                    }
                                }
                            }

                            Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

                            The method fileRename() has a Cyclomatic Complexity of 10. The configured cyclomatic complexity threshold is 10.
                            Open

                                public function fileRename(Request $request, int $id): JsonResponse
                                {
                                    try {
                                        $file = app(OrmService::class)->getOne(File::class, $id);
                                        if (!$file) {

                            CyclomaticComplexity

                            Since: 0.1

                            Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

                            Example

                            // Cyclomatic Complexity = 11
                            class Foo {
                            1   public function example() {
                            2       if ($a == $b) {
                            3           if ($a1 == $b1) {
                                            fiddle();
                            4           } elseif ($a2 == $b2) {
                                            fiddle();
                                        } else {
                                            fiddle();
                                        }
                            5       } elseif ($c == $d) {
                            6           while ($c == $d) {
                                            fiddle();
                                        }
                            7        } elseif ($e == $f) {
                            8           for ($n = 0; $n < $h; $n++) {
                                            fiddle();
                                        }
                                    } else {
                                        switch ($z) {
                            9               case 1:
                                                fiddle();
                                                break;
                            10              case 2:
                                                fiddle();
                                                break;
                            11              case 3:
                                                fiddle();
                                                break;
                                            default:
                                                fiddle();
                                                break;
                                        }
                                    }
                                }
                            }

                            Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

                            The class ExplorerController has a coupling between objects value of 21. Consider to reduce the number of dependencies under 13.
                            Open

                            class ExplorerController extends AbstractAdminController
                            {
                                private FileService $fileService;
                            
                                public function __construct()

                            CouplingBetweenObjects

                            Since: 1.1.0

                            A class with too many dependencies has negative impacts on several quality aspects of a class. This includes quality criteria like stability, maintainability and understandability

                            Example

                            class Foo {
                                /**
                                 * @var \foo\bar\X
                                 */
                                private $x = null;
                            
                                /**
                                 * @var \foo\bar\Y
                                 */
                                private $y = null;
                            
                                /**
                                 * @var \foo\bar\Z
                                 */
                                private $z = null;
                            
                                public function setFoo(\Foo $foo) {}
                                public function setBar(\Bar $bar) {}
                                public function setBaz(\Baz $baz) {}
                            
                                /**
                                 * @return \SplObjectStorage
                                 * @throws \OutOfRangeException
                                 * @throws \InvalidArgumentException
                                 * @throws \ErrorException
                                 */
                                public function process(\Iterator $it) {}
                            
                                // ...
                            }

                            Source https://phpmd.org/rules/design.html#couplingbetweenobjects

                            Avoid using static access to class '\App\Services\ConfigService' in method 'imageEditWidget'.
                            Open

                                        'thumbWidth'  => ConfigService::getInt('thumb_width'),

                            StaticAccess

                            Since: 1.4.0

                            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                            Example

                            class Foo
                            {
                                public function bar()
                                {
                                    Bar::baz();
                                }
                            }

                            Source https://phpmd.org/rules/cleancode.html#staticaccess

                            Avoid using static access to class '\App\Models\File' in method 'files'.
                            Open

                                        $file = File::getByPath($filePath);

                            StaticAccess

                            Since: 1.4.0

                            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                            Example

                            class Foo
                            {
                                public function bar()
                                {
                                    Bar::baz();
                                }
                            }

                            Source https://phpmd.org/rules/cleancode.html#staticaccess

                            Avoid using static access to class '\App\Services\ConfigService' in method 'index'.
                            Open

                                        'bgcolor'    => ConfigService::getString('bgcolor'),

                            StaticAccess

                            Since: 1.4.0

                            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                            Example

                            class Foo
                            {
                                public function bar()
                                {
                                    Bar::baz();
                                }
                            }

                            Source https://phpmd.org/rules/cleancode.html#staticaccess

                            Avoid using static access to class '\App\Models\File' in method 'imageSaveThumb'.
                            Open

                                    $newFile = File::fromPath($newPath);

                            StaticAccess

                            Since: 1.4.0

                            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                            Example

                            class Foo
                            {
                                public function bar()
                                {
                                    Bar::baz();
                                }
                            }

                            Source https://phpmd.org/rules/cleancode.html#staticaccess

                            Avoid using static access to class '\App\Models\File' in method 'imageSaveThumb'.
                            Open

                                    if (File::getByPath($newPath)) {

                            StaticAccess

                            Since: 1.4.0

                            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                            Example

                            class Foo
                            {
                                public function bar()
                                {
                                    Bar::baz();
                                }
                            }

                            Source https://phpmd.org/rules/cleancode.html#staticaccess

                            Avoid using static access to class '\App\Services\ConfigService' in method 'imageEditWidget'.
                            Open

                                        'textWidth'   => ConfigService::getInt('text_width'),

                            StaticAccess

                            Since: 1.4.0

                            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                            Example

                            class Foo
                            {
                                public function bar()
                                {
                                    Bar::baz();
                                }
                            }

                            Source https://phpmd.org/rules/cleancode.html#staticaccess

                            Avoid using static access to class '\App\Services\ConfigService' in method 'imageEditWidget'.
                            Open

                                        'thumbHeight' => ConfigService::getInt('thumb_height'),

                            StaticAccess

                            Since: 1.4.0

                            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                            Example

                            class Foo
                            {
                                public function bar()
                                {
                                    Bar::baz();
                                }
                            }

                            Source https://phpmd.org/rules/cleancode.html#staticaccess

                            Avoid using static access to class '\App\Models\File' in method 'fileRename'.
                            Open

                                        $existingFile = File::getByPath($newPath);

                            StaticAccess

                            Since: 1.4.0

                            Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

                            Example

                            class Foo
                            {
                                public function bar()
                                {
                                    Bar::baz();
                                }
                            }

                            Source https://phpmd.org/rules/cleancode.html#staticaccess

                            Avoid unused parameters such as '$request'.
                            Open

                                public function fileView(Request $request, int $id): Response

                            UnusedFormalParameter

                            Since: 0.2

                            Avoid passing parameters to methods or constructors and then not using those parameters.

                            Example

                            class Foo
                            {
                                private function bar($howdy)
                                {
                                    // $howdy is not used
                                }
                            }

                            Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

                            Avoid unused local variables such as '$mime'.
                            Open

                                    $mime = 'image/jpeg';

                            UnusedLocalVariable

                            Since: 0.2

                            Detects when a local variable is declared and/or assigned, but not used.

                            Example

                            class Foo {
                                public function doSomething()
                                {
                                    $i = 5; // Unused
                                }
                            }

                            Source https://phpmd.org/rules/unusedcode.html#unusedlocalvariable

                            Avoid unused parameters such as '$request'.
                            Open

                                public function fileDelete(Request $request, int $id): JsonResponse

                            UnusedFormalParameter

                            Since: 0.2

                            Avoid passing parameters to methods or constructors and then not using those parameters.

                            Example

                            class Foo
                            {
                                private function bar($howdy)
                                {
                                    // $howdy is not used
                                }
                            }

                            Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

                            Avoid variables with short names like $id. Configured minimum length is 3.
                            Open

                                public function fileDescription(Request $request, int $id): JsonResponse

                            ShortVariable

                            Since: 0.2

                            Detects when a field, local, or parameter has a very short name.

                            Example

                            class Something {
                                private $q = 15; // VIOLATION - Field
                                public static function main( array $as ) { // VIOLATION - Formal
                                    $r = 20 + $this->q; // VIOLATION - Local
                                    for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                                        $r += $this->q;
                                    }
                                }
                            }

                            Source https://phpmd.org/rules/naming.html#shortvariable

                            Avoid variables with short names like $id. Configured minimum length is 3.
                            Open

                                public function image(Request $request, int $id): Response

                            ShortVariable

                            Since: 0.2

                            Detects when a field, local, or parameter has a very short name.

                            Example

                            class Something {
                                private $q = 15; // VIOLATION - Field
                                public static function main( array $as ) { // VIOLATION - Formal
                                    $r = 20 + $this->q; // VIOLATION - Local
                                    for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                                        $r += $this->q;
                                    }
                                }
                            }

                            Source https://phpmd.org/rules/naming.html#shortvariable

                            Avoid variables with short names like $db. Configured minimum length is 3.
                            Open

                                    $db = app(DbService::class);

                            ShortVariable

                            Since: 0.2

                            Detects when a field, local, or parameter has a very short name.

                            Example

                            class Something {
                                private $q = 15; // VIOLATION - Field
                                public static function main( array $as ) { // VIOLATION - Formal
                                    $r = 20 + $this->q; // VIOLATION - Local
                                    for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                                        $r += $this->q;
                                    }
                                }
                            }

                            Source https://phpmd.org/rules/naming.html#shortvariable

                            Avoid variables with short names like $id. Configured minimum length is 3.
                            Open

                                public function fileMoveDialog(Request $request, int $id): Response

                            ShortVariable

                            Since: 0.2

                            Detects when a field, local, or parameter has a very short name.

                            Example

                            class Something {
                                private $q = 15; // VIOLATION - Field
                                public static function main( array $as ) { // VIOLATION - Formal
                                    $r = 20 + $this->q; // VIOLATION - Local
                                    for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                                        $r += $this->q;
                                    }
                                }
                            }

                            Source https://phpmd.org/rules/naming.html#shortvariable

                            Avoid variables with short names like $id. Configured minimum length is 3.
                            Open

                                public function fileRename(Request $request, int $id): JsonResponse

                            ShortVariable

                            Since: 0.2

                            Detects when a field, local, or parameter has a very short name.

                            Example

                            class Something {
                                private $q = 15; // VIOLATION - Field
                                public static function main( array $as ) { // VIOLATION - Formal
                                    $r = 20 + $this->q; // VIOLATION - Local
                                    for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                                        $r += $this->q;
                                    }
                                }
                            }

                            Source https://phpmd.org/rules/naming.html#shortvariable

                            Avoid variables with short names like $id. Configured minimum length is 3.
                            Open

                                public function fileDelete(Request $request, int $id): JsonResponse

                            ShortVariable

                            Since: 0.2

                            Detects when a field, local, or parameter has a very short name.

                            Example

                            class Something {
                                private $q = 15; // VIOLATION - Field
                                public static function main( array $as ) { // VIOLATION - Formal
                                    $r = 20 + $this->q; // VIOLATION - Local
                                    for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                                        $r += $this->q;
                                    }
                                }
                            }

                            Source https://phpmd.org/rules/naming.html#shortvariable

                            Avoid variables with short names like $id. Configured minimum length is 3.
                            Open

                                public function fileView(Request $request, int $id): Response

                            ShortVariable

                            Since: 0.2

                            Detects when a field, local, or parameter has a very short name.

                            Example

                            class Something {
                                private $q = 15; // VIOLATION - Field
                                public static function main( array $as ) { // VIOLATION - Formal
                                    $r = 20 + $this->q; // VIOLATION - Local
                                    for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                                        $r += $this->q;
                                    }
                                }
                            }

                            Source https://phpmd.org/rules/naming.html#shortvariable

                            Avoid variables with short names like $db. Configured minimum length is 3.
                            Open

                                    $db = app(DbService::class);

                            ShortVariable

                            Since: 0.2

                            Detects when a field, local, or parameter has a very short name.

                            Example

                            class Something {
                                private $q = 15; // VIOLATION - Field
                                public static function main( array $as ) { // VIOLATION - Formal
                                    $r = 20 + $this->q; // VIOLATION - Local
                                    for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                                        $r += $this->q;
                                    }
                                }
                            }

                            Source https://phpmd.org/rules/naming.html#shortvariable

                            Avoid variables with short names like $id. Configured minimum length is 3.
                            Open

                                public function imageSaveThumb(Request $request, int $id): Response

                            ShortVariable

                            Since: 0.2

                            Detects when a field, local, or parameter has a very short name.

                            Example

                            class Something {
                                private $q = 15; // VIOLATION - Field
                                public static function main( array $as ) { // VIOLATION - Formal
                                    $r = 20 + $this->q; // VIOLATION - Local
                                    for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                                        $r += $this->q;
                                    }
                                }
                            }

                            Source https://phpmd.org/rules/naming.html#shortvariable

                            Avoid variables with short names like $id. Configured minimum length is 3.
                            Open

                                public function imageEditWidget(Request $request, int $id): Response

                            ShortVariable

                            Since: 0.2

                            Detects when a field, local, or parameter has a very short name.

                            Example

                            class Something {
                                private $q = 15; // VIOLATION - Field
                                public static function main( array $as ) { // VIOLATION - Formal
                                    $r = 20 + $this->q; // VIOLATION - Local
                                    for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                                        $r += $this->q;
                                    }
                                }
                            }

                            Source https://phpmd.org/rules/naming.html#shortvariable

                            Avoid variables with short names like $id. Configured minimum length is 3.
                            Open

                                public function imageSave(Request $request, int $id): Response

                            ShortVariable

                            Since: 0.2

                            Detects when a field, local, or parameter has a very short name.

                            Example

                            class Something {
                                private $q = 15; // VIOLATION - Field
                                public static function main( array $as ) { // VIOLATION - Formal
                                    $r = 20 + $this->q; // VIOLATION - Local
                                    for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                                        $r += $this->q;
                                    }
                                }
                            }

                            Source https://phpmd.org/rules/naming.html#shortvariable

                            There are no issues that match your filters.

                            Category
                            Status