biurad/php-dependency-injection

View on GitHub

Showing 44 of 44 total issues

Method dump has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function dump(array $data): string
    {
        $writer = new XMLWriter();
        $writer->openMemory();
        $writer->setIndent(true);
Severity: Minor
Found in src/Adapters/XmlAdapter.php - About 1 hr to fix

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

        public function createInstance(string $class, array $args = [])
        {
            try {
                $reflector = new \ReflectionClass($class);
            } catch (\ReflectionException $e) {
    Severity: Minor
    Found in src/Container.php - About 1 hr to fix

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

          public static function autowireArguments(
              ReflectionFunctionAbstract $method,
              array $arguments,
              callable $getter
          ): array {
      Severity: Minor
      Found in src/Resolver.php - About 1 hr to fix

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

            public function createService(string $name, array $args = [])
            {
                $name   = $this->aliases[$name] ?? $name;
                $method = self::getMethodName($name);
                $cb     = $this->methods[$method] ?? null;
        Severity: Minor
        Found in src/Container.php - About 1 hr to fix

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

              public static function autowireArguments(
                  ReflectionFunctionAbstract $method,
                  array $arguments,
                  callable $getter
              ): array {
          Severity: Minor
          Found in src/Resolver.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 make has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

              public function make(string $alias, ...$parameters)
              {
                  try {
                      return $this->getService($alias);
                  } catch (MissingServiceException $e) {
          Severity: Minor
          Found in src/Container.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

          Avoid deeply nested control flow statements.
          Open

                                  if (!\is_array($this->getParameter($key))) {
                                      $nonNestedAlternative = $key;
          
                                      throw new ParameterNotFoundException(
                                          $name,
          Severity: Major
          Found in src/Builder.php - About 45 mins to fix

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

                public function setParameter(string $name, $value): void
                {
                    if (\strpos($name, '.') !== false) {
                        $parameters = &$this->parameters;
                        $keys       = \explode('.', $name);
            Severity: Minor
            Found in src/Builder.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 removeParameter has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                public function removeParameter(string $name): void
                {
                    if ($this->hasParameter($name)) {
                        unset($this->parameters[$name]);
                    } elseif (\strpos($name, '.') !== false) {
            Severity: Minor
            Found in src/Builder.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 addService has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                public function addService(string $name, $service)
                {
                    $service = null === $service ? $name : $service;
                    $name    = $this->aliases[$name] ?? $name;
            
            
            Severity: Minor
            Found in src/Container.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 runScope has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                public function runScope(array $bindings, callable $scope)
                {
                    $cleanup = $previous = [];
            
                    foreach ($bindings as $alias => $resolver) {
            Severity: Minor
            Found in src/Container.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 getPanel has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                public function getPanel(): string
                {
                    $rc    = new ReflectionClass($this->container);
                    $tags  = [];
                    $types = [];
            Severity: Minor
            Found in src/ContainerPanel.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 (float) $value;
            Severity: Major
            Found in src/Adapters/XmlAdapter.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                              return (string) \bindec($value);
              Severity: Major
              Found in src/Adapters/XmlAdapter.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                                return \hexdec($value);
                Severity: Major
                Found in src/Adapters/XmlAdapter.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                  return '0x' === $value[0] . $value[1] ? \hexdec($value) : (float) $value;
                  Severity: Major
                  Found in src/Adapters/XmlAdapter.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                    return (string) $value;
                    Severity: Major
                    Found in src/Adapters/XmlAdapter.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                      return (string) (float) $value;
                      Severity: Major
                      Found in src/Adapters/XmlAdapter.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                        return \bindec($value);
                        Severity: Major
                        Found in src/Adapters/XmlAdapter.php - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                          return \hexdec($value);
                          Severity: Major
                          Found in src/Adapters/XmlAdapter.php - About 30 mins to fix
                            Severity
                            Category
                            Status
                            Source
                            Language