theiconic/fixtures

View on GitHub

Showing 11 of 11 total issues

Function parse has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

    public function parse($source)
    {
        $fixtureArray = [];
        $z = new \XMLReader;
        $z->open($source);
Severity: Minor
Found in src/Parser/XmlParser.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 parse has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function parse($source)
    {
        $fixtureArray = [];
        $z = new \XMLReader;
        $z->open($source);
Severity: Minor
Found in src/Parser/XmlParser.php - About 1 hr to fix

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

        public function parse(array $sources)
        {
            $fs = new Filesystem();
    
            if (empty($sources)) {
    Severity: Minor
    Found in src/FixtureManager/FixtureManager.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 __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        public function __construct($host, $port, $dbNumber, $namespace, $namespaceSeparator = ':', $serializer = null)
    Severity: Minor
    Found in src/Persister/Redis/RedisPersister.php - About 45 mins to fix

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

          public function __construct($host, $port, $dbNumber, $namespace, $namespaceSeparator = ':', $serializer = null)
      Severity: Minor
      Found in src/Persister/Redis/AbstractRedisPersister.php - About 45 mins to fix

        Function replacePlaceholders has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            private function replacePlaceholders(Fixture $fixture, array $replacementPlaceholders)
            {
                $replacedData = [];
        
                foreach ($fixture as $index => $fixtureData) {
        Severity: Minor
        Found in src/Replacer/PlaceholderReplacer.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

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

            public function setDefaultRedisPersister($host, $port, $dbNumber, $namespace, $namespaceSeparator = ':', $serializer = null)
        Severity: Minor
        Found in src/FixtureManager/FixtureManager.php - About 45 mins to fix

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

              public static function create($host, $database, $username, $password, $driver = self::DEFAULT_PDO_PERSISTER_DRIVER)
          Severity: Minor
          Found in src/Persister/PDO/PersisterFactory.php - About 35 mins to fix

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

                public function __construct($host, $database, $username, $password, $driver)
            Severity: Minor
            Found in src/Persister/PDO/AbstractPDOPersister.php - About 35 mins to fix

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

                  public function getAvailableParsers()
                  {
                      if ($this->parsers !== null) {
                          $parsers = $this->parsers;
                      } else {
              Severity: Minor
              Found in src/Parser/MasterParser.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 persist has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function persist(Fixture $fixture)
                  {
                      $database = $this->config['database'];
                      $table = $fixture->getName();
              
              
              Severity: Minor
              Found in src/Persister/PDO/MysqlPersister.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