luyadev/luya-module-admin

View on GitHub

Showing 331 of 503 total issues

Avoid too many return statements within this method.
Open

                return $this->outputError('Aborted by user.');
Severity: Major
Found in src/commands/SetupController.php - About 30 mins to fix

    Avoid too many return statements within this method.
    Open

                return [
                    'application/json' => new MediaType([
                        'schema' => [
                            'type' => 'object',
                        ],
    Severity: Major
    Found in src/openapi/specs/BaseSpecs.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

              return [];
      Severity: Major
      Found in src/openapi/specs/BaseSpecs.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                return false;
        Severity: Major
        Found in src/openapi/phpdoc/PhpDocType.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                      return $class;
          Severity: Major
          Found in src/openapi/phpdoc/PhpDocType.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                        return [
                            'application/json' => new MediaType([
                                'schema' => [
                                    'type' => $type->getNoramlizeName(),
                                ],
            Severity: Major
            Found in src/openapi/specs/BaseSpecs.php - About 30 mins to fix

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

                  public function getFields($type)
                  {
                      if (!array_key_exists($type, $this->_fields)) {
                          $fields = [];
                          if ($this->config->hasPointer($type)) {
              Severity: Minor
              Found in src/ngrest/render/RenderCrud.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 generateLabelField has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  private function generateLabelField(ActiveRecordInterface $model)
                  {
                      if (is_callable($this->labelField, false)) {
                          return call_user_func($this->labelField, $model);
                      }
              Severity: Minor
              Found in src/ngrest/plugins/SelectModel.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 getRelations has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function getRelations()
                  {
                      if ($this->_relations === null) {
                          // ensure relations are made not on composite table.
                          if ($this->model->ngRestRelations() && (is_countable($this->getPrimaryKey()) ? count($this->getPrimaryKey()) : 0) > 1) {
              Severity: Minor
              Found in src/ngrest/Config.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 getWithRelation has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function getWithRelation($actionName)
                  {
                      $expand = Yii::$app->request->get('expand', '');
                      $relationPrefixes = [];
                      foreach (StringHelper::explode($expand, ',', true, true) as $relation) {
              Severity: Minor
              Found in src/ngrest/base/Api.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 apiQueryString has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function apiQueryString($type)
                  {
                      // basic query
                      $query = ['ngrestCallType' => $type];
              
              
              Severity: Minor
              Found in src/ngrest/render/RenderCrud.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 afterFind has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function afterFind()
                  {
                      if ($this->getNgRestCallType()) {
                          if ($this->getNgRestCallType() == 'list') {
                              $this->trigger(self::EVENT_AFTER_NGREST_FIND);
              Severity: Minor
              Found in src/ngrest/base/NgRestModel.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 generateNgRestRelations has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function generateNgRestRelations()
                  {
                      $relations = [];
                      // generate relations
                      foreach ($this->ngRestRelations() as $key => $item) {
              Severity: Minor
              Found in src/ngrest/base/NgRestModel.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 relationsFromExpand has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  private function relationsFromExpand(array $relations, array $expandPrefixes)
                  {
                      $valid = [];
                      foreach ($expandPrefixes as $prefix) {
                          foreach ($relations as $relation) {
              Severity: Minor
              Found in src/ngrest/base/Api.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 getNgRestScopeConfigOptions has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function getNgRestScopeConfigOptions($config)
                  {
                      $configOptions = [];
                      foreach ($this->ngRestScopes() as $arrayConfig) {
                          $scope = is_string($arrayConfig[0]) ? [$arrayConfig[0]] : $arrayConfig[0];
              Severity: Minor
              Found in src/ngrest/base/NgRestModel.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 isSkippableTable has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  private function isSkippableTable($tableName, array $filters)
                  {
                      $skip = true;
              
                      foreach ($filters as $filter) {
              Severity: Minor
              Found in src/proxy/ClientBuild.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 findIdentityByAccessToken has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public static function findIdentityByAccessToken($token, $type = null)
                  {
                      if (empty($token) || !is_scalar($token)) {
                          throw new InvalidArgumentException("The provided access token is invalid.");
                      }
              Severity: Minor
              Found in src/models/User.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 actionImageProvider has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function actionImageProvider($machine, $buildToken, $imageId)
                  {
                      $build = $this->ensureBuild($machine, $buildToken);
              
                      if ($build) {
              Severity: Minor
              Found in src/apis/ProxyController.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 applyFilter has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function applyFilter(ImageInterface $image, array $saveOptions)
                  {
                      gc_collect_cycles();
              
                      $imagineEffectName = $this->effect->getImagineEffectName();
              Severity: Minor
              Found in src/models/StorageFilterChain.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 cleanUpMatchRow has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  protected function cleanUpMatchRow(array $row)
                  {
                      $data = [];
                      foreach ($row as $key => $item) {
                          foreach ($item as $field => $value) {
              Severity: Minor
              Found in src/proxy/ClientTable.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