Collizo4sky/omnipay-wepay

View on GitHub

Showing 4 of 9 total issues

AbstractRequest has 35 functions (exceeds 20 allowed). Consider refactoring.
Open

abstract class AbstractRequest extends \Omnipay\Common\Message\AbstractRequest
{
    protected $liveEndpoint = 'https://wepayapi.com/v2/';
    protected $testEndpoint = 'https://stage.wepayapi.com/v2/';

Severity: Minor
Found in src/Message/AbstractRequest.php - About 4 hrs to fix

    Gateway has 27 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Gateway extends AbstractGateway
    {
        public function getName()
        {
            return 'WePay';
    Severity: Minor
    Found in src/Gateway.php - About 3 hrs to fix

      Method getData has 74 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function getData()
          {
              $this->validate('transactionId', 'amount', 'currency', 'type', 'description', 'accountId');
      
              $data = array();
      Severity: Major
      Found in src/Message/PurchaseRequest.php - About 2 hrs to fix

        Function getData has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
        Open

            public function getData()
            {
                $this->validate('transactionId', 'amount', 'currency', 'type', 'description', 'accountId');
        
                $data = array();
        Severity: Minor
        Found in src/Message/PurchaseRequest.php - About 2 hrs 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