dcardenascom/lemonway-php

View on GitHub
src/Models/WalletModel.php

Summary

Maintainability
D
2 days
Test Coverage

WalletModel has 67 functions (exceeds 20 allowed). Consider refactoring.
Open

class WalletModel extends LemonwayObjectModel
{
    const ACTION_GET_WALLET_DETAILS = 'GetWalletDetails';
    const ACTION_GET_KYC_STATUS = 'GetKycStatus';
    const ACTION_UPDATE_WALLET_DETAILS = 'UpdateWalletDetails';
Severity: Major
Found in src/Models/WalletModel.php - About 1 day to fix

    File WalletModel.php has 452 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    /**
     * Created by David Cardenas
     * GitHub: https://github.com/dcardenascom
     * GitLab: https://gitlab.com/dcardenas
    Severity: Minor
    Found in src/Models/WalletModel.php - About 6 hrs to fix

      Method bindFromLemonway has 48 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function bindFromLemonway(stdClass $object): bool
          {
              $map = [
                  'ID'                 => 'setId',
                  'BAL'                => 'setBalance',
      Severity: Minor
      Found in src/Models/WalletModel.php - About 1 hr to fix

        Function bindFromLemonway has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

            public function bindFromLemonway(stdClass $object): bool
            {
                $map = [
                    'ID'                 => 'setId',
                    'BAL'                => 'setBalance',
        Severity: Minor
        Found in src/Models/WalletModel.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 updateDetailsToLemonway has 36 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function updateDetailsToLemonway(ClientModel $clientModel): bool
            {
                if ('' === $this->getId()) {
                    throw new ParameterNotFoundException('Please provide wallet id');
                }
        Severity: Minor
        Found in src/Models/WalletModel.php - About 1 hr to fix

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

              public function toArray(): array
              {
                  $arrayToReturn = [
                      'id'                  => $this->getId(),
                      'balance'             => $this->getBalance(),
          Severity: Minor
          Found in src/Models/WalletModel.php - About 1 hr to fix

            There are no issues that match your filters.

            Category
            Status