swaggest/php-code-builder

View on GitHub

Showing 55 of 65 total issues

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

    private function renderProperties()
    {
        $result = '';
        foreach ($this->properties as $property) {
            if ($property->isMagical()) {
Severity: Minor
Found in src/PhpClass.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 processArrayType has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    private function processArrayType()
    {
        $schema = $this->schema;

        /** @var string $pathItems */
Severity: Minor
Found in src/JsonSchema/TypeBuilder.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 makePhpConstantName has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    public static function makePhpConstantName($rawName)
    {
        $phpName = preg_replace("/([^a-zA-Z0-9_]+)/", "_", $rawName);
        if (is_string($phpName)) {
            $phpName = trim($phpName, '_');
Severity: Minor
Found in src/PhpCode.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/JsonSchema/PhpBuilder.php - About 30 mins to fix

    Avoid too many return statements within this method.
    Open

                    return PhpStdType::null();
    Severity: Major
    Found in src/JsonSchema/TypeBuilder.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

              return $res;
      Severity: Major
      Found in src/Markdown/TypeBuilder.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                return false;
        Severity: Major
        Found in src/JsonSchema/PhpBuilder.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                      return true;
          Severity: Major
          Found in src/JsonSchema/PhpBuilder.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                            return PhpStdType::arr();
            Severity: Major
            Found in src/JsonSchema/TypeBuilder.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                              return null;
              Severity: Major
              Found in src/JsonSchema/TypeBuilder.php - About 30 mins to fix

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

                    public function renderDefault()
                    {
                        if (!$this->hasDefault) {
                            return '';
                        }
                Severity: Minor
                Found in src/PhpNamedVar.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 makePhpNamespaceName has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                    public static function makePhpNamespaceName(array $nsItems)
                    {
                        $result = array();
                        foreach ($nsItems as $nsItem) {
                            $nsItem = self::makePhpName($nsItem, false);
                Severity: Minor
                Found in src/PhpCode.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 processFromRef has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                    private function processFromRef()
                    {
                        if ($this->phpBuilder->minimizeRefs) {
                            if ($fromRefs = $this->schema->getFromRefs()) {
                                $fromRef = $fromRefs[count($fromRefs) - 1];
                Severity: Minor
                Found in src/JsonSchema/SchemaBuilder.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 build has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function build()
                    {
                        $this->result = new OrType();
                        if ($this->schema === null) {
                            throw new Exception('Null schema');
                Severity: Minor
                Found in src/JsonSchema/TypeBuilder.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 makeObjectTypeDef has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                    private function makeObjectTypeDef(Schema $schema, $path)
                    {
                        $typeName = $this->typeName($schema, $path);
                        $this->processed->attach($schema, $typeName);
                
                
                Severity: Minor
                Found in src/JSDoc/TypeBuilder.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