GemsTracker/gemstracker-library

View on GitHub
classes/Gems/Model/AppointmentModel.php

Summary

Maintainability
B
5 hrs
Test Coverage
F
19%

Method _addJoinTables has 41 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected function _addJoinTables()
    {
        $this->addTable('gems__respondents', array('gap_id_user' => 'grs_id_user'));

        if ($this->has('gap_id_organization')) {
Severity: Minor
Found in classes/Gems/Model/AppointmentModel.php - About 1 hr to fix

    Method applyDetailSettings has 38 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function applyDetailSettings($setMulti = true)
        {
            $this->resetOrder();
    
            $agenda     = $this->loader->getAgenda();
    Severity: Minor
    Found in classes/Gems/Model/AppointmentModel.php - About 1 hr to fix

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

          public function applyBrowseSettings()
          {
              $this->_addJoinTables();
              $this->resetOrder();
      
      
      Severity: Minor
      Found in classes/Gems/Model/AppointmentModel.php - About 1 hr to fix

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

            public function save(array $newValues, array $filter = null)
            {
                // When appointment id is not set, then check for existing instances of
                // this appointment using the source information
                if ((!isset($newValues['gap_id_appointment'])) &&
        Severity: Minor
        Found in classes/Gems/Model/AppointmentModel.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 afterRegistry has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            public function afterRegistry()
            {
                $agenda = $this->loader->getAgenda();
        
                if ($agenda) {
        Severity: Minor
        Found in classes/Gems/Model/AppointmentModel.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 variables with short names like $db. Configured minimum length is 3.
        Open

            protected $db;

        ShortVariable

        Since: 0.2

        Detects when a field, local, or parameter has a very short name.

        Example

        class Something {
            private $q = 15; // VIOLATION - Field
            public static function main( array $as ) { // VIOLATION - Formal
                $r = 20 + $this->q; // VIOLATION - Local
                for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                    $r += $this->q;
                }
            }
        }

        Source https://phpmd.org/rules/naming.html#shortvariable

        Avoid variables with short names like $id. Configured minimum length is 3.
        Open

                    $id = $this->db->fetchOne(

        ShortVariable

        Since: 0.2

        Detects when a field, local, or parameter has a very short name.

        Example

        class Something {
            private $q = 15; // VIOLATION - Field
            public static function main( array $as ) { // VIOLATION - Formal
                $r = 20 + $this->q; // VIOLATION - Local
                for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                    $r += $this->q;
                }
            }
        }

        Source https://phpmd.org/rules/naming.html#shortvariable

        There are no issues that match your filters.

        Category
        Status