luyadev/luya-module-forms

View on GitHub

Showing 10 of 12 total issues

Method save has 56 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function save(Form $form, $doNotSave = false)
    {
        $model = new Submission();
        $model->form_id = $form->id;
        $model->useragent = Yii::$app->request->userAgent;
Severity: Major
Found in src/Forms.php - About 2 hrs to fix

    Function save has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        public function save(Form $form, $doNotSave = false)
        {
            $model = new Submission();
            $model->form_id = $form->id;
            $model->useragent = Yii::$app->request->userAgent;
    Severity: Minor
    Found in src/Forms.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 safeUp has 34 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function safeUp()
        {
            $this->createTable('{{%forms_form}}', [
                'id' => $this->primaryKey(),
                'title' => $this->text()->notNull(),
    Severity: Minor
    Found in src/migrations/m200910_114548_basetables.php - About 1 hr to fix

      Method config has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function config()
          {
              return [
                  'vars' => [
                      [
      Severity: Minor
      Found in src/blocks/FormBlock.php - About 1 hr to fix

        Function submitAndStore has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

            public function submitAndStore()
            {
                if ($this->isSubmit()) {
                    // the data is only available if the isSubmit call was running, therefore for
                    // first check for is submit
        Severity: Minor
        Found in src/blocks/FormBlock.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

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

            public function callbackExport()
            {
                $data = [];
        
                $keys = false;
        Severity: Minor
        Found in src/aws/ExportActiveWindow.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 config has 26 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function config()
            {
                return ArrayHelper::merge([
                    'vars' => [
                        [
        Severity: Minor
        Found in src/blocks/SelectBlock.php - About 1 hr to fix

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

              public function frontend()
              {
                  Yii::$app->forms->autoConfigureAttribute(
                      $this->getVarValue($this->varAttribute),
                      $this->getVarValue($this->varRule, $this->defaultRule),
          Severity: Minor
          Found in src/blocks/CheckboxesBlock.php - About 1 hr to fix

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

                public function callbackExport()
                {
                    $data = [];
            
                    $keys = false;
            Severity: Minor
            Found in src/aws/ExportActiveWindow.php - About 1 hr to fix

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

                  public function autoConfigureAttribute($attributeName, $rule, $isRequired, $label = null, $hint = null, $formatAs = null)
              Severity: Minor
              Found in src/Forms.php - About 45 mins to fix
                Severity
                Category
                Status
                Source
                Language