Showing 30 of 30 total issues

File HasBrowserCommandAliases.php has 388 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace Glhd\Dawn\Browser\Concerns;

use Closure;
Severity: Minor
Found in src/Browser/Concerns/HasBrowserCommandAliases.php - About 5 hrs to fix

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

    <?php
    
    namespace Glhd\Dawn\Browser\Commands\Assertions;
    
    use Facebook\WebDriver\WebDriverBy;
    Severity: Major
    Found in src/Browser/Commands/Assertions/AssertSeeIn.php and 1 other location - About 2 hrs to fix
    src/Browser/Commands/Assertions/AssertDontSeeIn.php on lines 1..40

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 133.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

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

    <?php
    
    namespace Glhd\Dawn\Browser\Commands\Assertions;
    
    use Facebook\WebDriver\WebDriverBy;
    Severity: Major
    Found in src/Browser/Commands/Assertions/AssertDontSeeIn.php and 1 other location - About 2 hrs to fix
    src/Browser/Commands/Assertions/AssertSeeIn.php on lines 1..40

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 133.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    File HasBrowserAssertionAliases.php has 263 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    namespace Glhd\Dawn\Browser\Concerns;
    
    use Facebook\WebDriver\WebDriverBy;
    Severity: Minor
    Found in src/Browser/Concerns/HasBrowserAssertionAliases.php - About 2 hrs to fix

      Method handle has 49 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function handle()
          {
              $this->base = rtrim(realpath(__DIR__.'/../../Browser/Commands'), '/').'/';
              
              $this->line('Generating traits...');
      Severity: Minor
      Found in src/Console/Commands/GenerateCommandHelpersCommand.php - About 1 hr to fix

        Method performAssertions has 36 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected function performAssertions(RemoteWebDriverBroker $broker): void
            {
                $segments = parse_url($this->actual);
                
                $segments['url'] = sprintf(
        Severity: Minor
        Found in src/Browser/Commands/Assertions/AssertUrl.php - About 1 hr to fix

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

              public function register()
              {
                  $this->mergeConfigFrom($this->packageConfigFile(), 'dawn');
          
                  if (! $this->app->runningUnitTests()) {
          Severity: Minor
          Found in src/Providers/DawnServiceProvider.php - About 1 hr to fix

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

                public function responsiveScreenshots(string $name): static
                {
                    // TODO: $responsiveScreenSizes
                    $sizes = [
                        'xs' => [
            Severity: Minor
            Found in src/Browser/Concerns/HasBrowserCommandAliases.php - About 1 hr to fix

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

                  protected function performAssertions(RemoteWebDriverBroker $broker): void
                  {
                      $parts = parse_url($this->actual);
                      
                      Assert::assertArrayHasKey(
              Severity: Minor
              Found in src/Browser/Commands/Assertions/AssertQueryStringHas.php - About 1 hr to fix

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

                    protected function handleFile(SplFileInfo $file): array
                    {
                        $source = $file->getContents();
                        
                        $trait = Str::of($file->getRelativePath())
                Severity: Minor
                Found in src/Console/Commands/GenerateCommandHelpersCommand.php - About 1 hr to fix

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

                          public WebDriverBy|string $selector,
                          public ?bool $expect_exists = true,
                          public string $resolver = 'find',
                          public ?bool $expect_displayed = null,
                          public ?bool $expect_selected = null,
                  Severity: Major
                  Found in src/Browser/Commands/Assertions/AssertElementStatus.php - About 50 mins to fix

                    Method assertElementStatus has 7 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        public function assertElementStatus(WebDriverBy|string $selector, ?bool $expect_exists = true, string $resolver = 'find', ?bool $expect_displayed = null, ?bool $expect_selected = null, ?bool $expect_enabled = null, ?bool $expect_focused = null): static
                    Severity: Major
                    Found in src/Browser/Concerns/ExecutesAssertionCommands.php - About 50 mins to fix

                      Method assertSelectionState has 6 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                          public function assertSelectionState(WebDriverBy|string $selector, $value, bool $expected = true, bool $expect_indeterminate = false, string $resolver = 'findOrFail', string $message = ''): static
                      Severity: Minor
                      Found in src/Browser/Concerns/ExecutesAssertionCommands.php - About 45 mins to fix

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

                                public WebDriverBy|string $selector,
                                public $value,
                                public bool $expected = true,
                                public bool $expect_indeterminate = false,
                                public string $resolver = 'findOrFail',
                        Severity: Minor
                        Found in src/Browser/Commands/Assertions/AssertSelectionState.php - About 45 mins to fix

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

                                  ?string $public_path = null,
                                  string $host = '127.0.0.1',
                                  int $port = 8089,
                                  ?LoopInterface $loop = null,
                                  ?ReadableStreamInterface $stdin = null,
                          Severity: Minor
                          Found in src/Http/WebServerProcess.php - About 45 mins to fix

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

                            <?php
                            
                            namespace Glhd\Dawn\Browser\Commands\Mouse;
                            
                            use Facebook\WebDriver\Interactions\WebDriverActions;
                            Severity: Major
                            Found in src/Browser/Commands/Mouse/RightClick.php and 2 other locations - About 40 mins to fix
                            src/Browser/Commands/Mouse/ClickAndHold.php on lines 1..27
                            src/Browser/Commands/Mouse/DoubleClick.php on lines 1..27

                            Duplicated Code

                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                            Tuning

                            This issue has a mass of 94.

                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                            Refactorings

                            Further Reading

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

                            <?php
                            
                            namespace Glhd\Dawn\Browser\Commands\Mouse;
                            
                            use Facebook\WebDriver\Interactions\WebDriverActions;
                            Severity: Major
                            Found in src/Browser/Commands/Mouse/DoubleClick.php and 2 other locations - About 40 mins to fix
                            src/Browser/Commands/Mouse/ClickAndHold.php on lines 1..27
                            src/Browser/Commands/Mouse/RightClick.php on lines 1..27

                            Duplicated Code

                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                            Tuning

                            This issue has a mass of 94.

                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                            Refactorings

                            Further Reading

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

                            <?php
                            
                            namespace Glhd\Dawn\Browser\Commands\Mouse;
                            
                            use Facebook\WebDriver\Interactions\WebDriverActions;
                            Severity: Major
                            Found in src/Browser/Commands/Mouse/ClickAndHold.php and 2 other locations - About 40 mins to fix
                            src/Browser/Commands/Mouse/DoubleClick.php on lines 1..27
                            src/Browser/Commands/Mouse/RightClick.php on lines 1..27

                            Duplicated Code

                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                            Tuning

                            This issue has a mass of 94.

                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                            Refactorings

                            Further Reading

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

                                    public string $name,
                                    public ?string $value = null,
                                    public int|DateTimeInterface|null $expiry = null,
                                    public array $options = [],
                                    bool $encrypt = true,
                            Severity: Minor
                            Found in src/Browser/Commands/Cookies/AddCookie.php - About 35 mins to fix

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

                                  public function assertAttribute(WebDriverBy|string $selector, string $attribute, $value, bool $not = false, bool $contains = false): static
                              Severity: Minor
                              Found in src/Browser/Concerns/ExecutesAssertionCommands.php - About 35 mins to fix
                                Severity
                                Category
                                Status
                                Source
                                Language