php-mod/curl

View on GitHub

Showing 7 of 7 total issues

Curl has 37 functions (exceeds 20 allowed). Consider refactoring.
Open

class Curl
{
// The HTTP authentication method(s) to use.
 
/**
Severity: Minor
Found in src/Curl/Curl.php - About 4 hrs to fix

    File Curl.php has 320 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
     
    namespace Curl;
     
    /**
    Severity: Minor
    Found in src/Curl/Curl.php - About 3 hrs to fix

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

      public function put($url, $data = array(), $payload = false, $asJson = false)
      {
      if (! empty($data)) {
      if ($payload === false) {
      $url .= '?'.http_build_query($data);
      Severity: Major
      Found in src/Curl/Curl.php and 1 other location - About 2 hrs to fix
      src/Curl/Curl.php on lines 394..412

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

      public function patch($url, $data = array(), $payload = false, $asJson = false)
      {
      if (! empty($data)) {
      if ($payload === false) {
      $url .= '?'.http_build_query($data);
      Severity: Major
      Found in src/Curl/Curl.php and 1 other location - About 2 hrs to fix
      src/Curl/Curl.php on lines 363..381

      Function preparePayload has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

      protected function preparePayload($data)
      {
      $this->setOpt(CURLOPT_POST, true);
       
      if (is_array($data) || is_object($data)) {
      Severity: Minor
      Found in src/Curl/Curl.php - About 55 mins to fix

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

      public function put($url, $data = array(), $payload = false, $asJson = false)
      {
      if (! empty($data)) {
      if ($payload === false) {
      $url .= '?'.http_build_query($data);
      Severity: Minor
      Found in src/Curl/Curl.php - About 45 mins to fix

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

      public function patch($url, $data = array(), $payload = false, $asJson = false)
      {
      if (! empty($data)) {
      if ($payload === false) {
      $url .= '?'.http_build_query($data);
      Severity: Minor
      Found in src/Curl/Curl.php - About 45 mins to fix
      Severity
      Category
      Status
      Source
      Language