repman-io/repman

View on GitHub

Showing 85 of 140 total issues

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

    public function __construct(string $id, string $name, string $alias, array $members, bool $hasAnonymousAccess)
Severity: Minor
Found in src/Query/User/Model/Organization.php - About 35 mins to fix

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

        public function __construct(string $id, string $email, string $plainPassword, string $confirmToken, array $roles = [])
    Severity: Minor
    Found in src/Message/User/CreateUser.php - About 35 mins to fix

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

          public function sendScanResult(array $emails, string $packageName, string $packageId, string $organizationAlias, array $result): void
      Severity: Minor
      Found in src/Service/Mailer/SymfonyMailer.php - About 35 mins to fix

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

            public function __construct(string $id, int $tokens, bool $public, int $members, int $owners)
        Severity: Minor
        Found in src/Service/Telemetry/Entry/Organization.php - About 35 mins to fix

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

                  UuidInterface $id,
                  Package $package,
                  string $type,
                  string $target,
                  string $constraint
          Severity: Minor
          Found in src/Entity/Organization/Package/Link.php - About 35 mins to fix

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

                    SecurityChecker $checker,
                    PackageManager $packageManager,
                    ScanResultRepository $results,
                    MessageBusInterface $messageBus,
                    Storage $distStorage
            Severity: Minor
            Found in src/Service/Security/PackageScanner/SensioLabsPackageScanner.php - About 35 mins to fix

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

                  public function __construct(string $repo, string $package, string $version, string $ref, string $format)
              Severity: Minor
              Found in src/Service/Dist.php - About 35 mins to fix

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

                    public function __construct(UuidInterface $id, Package $package, \DateTimeImmutable $date, string $status, array $content)
                Severity: Minor
                Found in src/Entity/Organization/Package/ScanResult.php - About 35 mins to fix

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

                      public function __construct(UuidInterface $id, string $email, string $emailConfirmToken, array $roles, ?string $timezone = null)
                  Severity: Minor
                  Found in src/Entity/User.php - About 35 mins to fix

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

                        public function distribution(Organization $organization, string $package, string $version, string $ref, string $type): StreamedResponse
                    Severity: Minor
                    Found in src/Controller/RepoController.php - About 35 mins to fix

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

                          public function sendScanResult(array $emails, string $packageName, string $packageId, string $organizationAlias, array $result): void;
                      Severity: Minor
                      Found in src/Service/Mailer.php - About 35 mins to fix

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

                            public function __construct(string $packageId, string $version, \DateTimeImmutable $date, ?string $ip, ?string $userAgent)
                        Severity: Minor
                        Found in src/Message/Organization/AddDownload.php - About 35 mins to fix

                          Function __construct has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                          Open

                              public function __construct(
                                  string $region,
                                  bool $isOpaqueAuth,
                                  ?string $key = null,
                                  ?string $secret = null,
                          Severity: Minor
                          Found in src/Service/Integration/Aws/S3AdapterFactory.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

                          Function tryToRemoveWebhook has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                          Open

                              private function tryToRemoveWebhook(Package $package): void
                              {
                                  if ($package->webhookCreatedAt() !== null) {
                                      try {
                                          switch ($package->type()) {
                          Severity: Minor
                          Found in src/Controller/OrganizationController.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

                          Function tryToRemoveWebhook has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                          Open

                              private function tryToRemoveWebhook(Package $package): ?string
                              {
                                  $warning = null;
                                  if ($package->getWebhookCreatedAt() !== null) {
                                      try {
                          Severity: Minor
                          Found in src/Controller/Api/PackageController.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 false;
                          Severity: Major
                          Found in src/Service/Organization/OrganizationVoter.php - About 30 mins to fix

                            Function diff has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                            Open

                                public function diff(Environment $env, $date, $now = null): string
                                {
                                    $date = twig_date_converter($env, $date);
                            
                                    $now = $now === null
                            Severity: Minor
                            Found in src/Service/Twig/DateExtension.php - About 25 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 findProviders has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                            Open

                                public function findProviders(string $organizationAlias, array $packages): array
                                {
                                    $data = [];
                                    $lastModified = null;
                            
                            
                            Severity: Minor
                            Found in src/Service/Organization/PackageManager.php - About 25 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 scan has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                            Open

                                public function scan(Package $package): void
                                {
                                    $packageName = $package->name();
                                    $result = [];
                                    $status = ScanResult::STATUS_OK;
                            Severity: Minor
                            Found in src/Service/Security/PackageScanner/SensioLabsPackageScanner.php - About 25 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 checkPackage has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                            Open

                                private function checkPackage(Package $package): array
                                {
                                    $packageAdvisories = $this->advisories[$package->name()] ?? [];
                            
                                    $alerts = [];
                            Severity: Minor
                            Found in src/Service/Security/SecurityChecker/SensioLabsSecurityChecker.php - About 25 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

                            Severity
                            Category
                            Status
                            Source
                            Language