damianopetrungaro/CachetSDK

View on GitHub

Showing 13 of 20 total issues

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

    public function searchPoints($metricId, $search, $by, $limit = 1, $num = 1000, $page = 1)
Severity: Minor
Found in src/Points/PointActions.php - About 45 mins to fix

    Method searchIncidents has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        public function searchIncidents($search, $by, $limit = 1, $num = 1000, $page = 1)
    Severity: Minor
    Found in src/Incidents/IncidentActions.php - About 35 mins to fix

      Method searchMetrics has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          public function searchMetrics($search, $by, $limit = 1, $num = 1000, $page = 1)
      Severity: Minor
      Found in src/Metrics/MetricActions.php - About 35 mins to fix

        Method searchSubscribers has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            public function searchSubscribers($search, $by, $limit = 1, $num = 1000, $page = 1)
        Severity: Minor
        Found in src/Subscribers/SubscriberActions.php - About 35 mins to fix

          Method searchComponents has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              public function searchComponents($search, $by, $limit = 1, $num = 1000, $page = 1)
          Severity: Minor
          Found in src/Components/ComponentActions.php - About 35 mins to fix

            Method searchGroups has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                public function searchGroups($search, $by, $limit = 1, $num = 1000, $page = 1)
            Severity: Minor
            Found in src/Groups/GroupActions.php - About 35 mins to fix

              Avoid too many return statements within this method.
              Open

                      return array_slice($filtered, 0, $limit);
              Severity: Major
              Found in src/Metrics/MetricActions.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                        return array_slice($filtered, 0, $limit);
                Severity: Major
                Found in src/Components/ComponentActions.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                          return array_slice($filtered, 0, $limit);
                  Severity: Major
                  Found in src/Incidents/IncidentActions.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                            return array_slice($filtered, 0, $limit);
                    Severity: Major
                    Found in src/Groups/GroupActions.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                              return array_slice($filtered, 0, $limit);
                      Severity: Major
                      Found in src/Points/PointActions.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                return array_slice($filtered, 0, $limit);
                        Severity: Major
                        Found in src/Subscribers/SubscriberActions.php - About 30 mins to fix

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

                              public function call($method, $endpoint, array $params = [])
                              {
                                  try {
                                      $request = new Request($method, $endpoint, ['http_errors' => false]);
                                      $response = $this->client->send($request, $params);
                          Severity: Minor
                          Found in src/CachetClient.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