Showing 10 of 10 total issues
WalletModel
has 67 functions (exceeds 20 allowed). Consider refactoring. Open
Open
class WalletModel extends LemonwayObjectModel
{
const ACTION_GET_WALLET_DETAILS = 'GetWalletDetails';
const ACTION_GET_KYC_STATUS = 'GetKycStatus';
const ACTION_UPDATE_WALLET_DETAILS = 'UpdateWalletDetails';
File WalletModel.php
has 452 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
<?php
/**
* Created by David Cardenas
* GitHub: https://github.com/dcardenascom
* GitLab: https://gitlab.com/dcardenas
Method bindFromLemonway
has 48 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function bindFromLemonway(stdClass $object): bool
{
$map = [
'ID' => 'setId',
'BAL' => 'setBalance',
Function bindFromLemonway
has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring. Open
Open
public function bindFromLemonway(stdClass $object): bool
{
$map = [
'ID' => 'setId',
'BAL' => 'setBalance',
- Read upRead up
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
Open
public function updateDetailsToLemonway(ClientModel $clientModel): bool
{
if ('' === $this->getId()) {
throw new ParameterNotFoundException('Please provide wallet id');
}
Method downloadDocumentFile
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function downloadDocumentFile(string $backofficeBaseUrl, int $walletProviderId, int $documentProviderId)
{
try {
$gouteClient = new GouteClient();
$crawler = $gouteClient->request('GET', $backofficeBaseUrl);
Function getErrorsFromContent
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
Open
public function getErrorsFromContent(stdClass $content): string
{
$errorMessage = '';
if (is_object($content) && property_exists($content, 'd')) {
- Read upRead up
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 getResponseFromAPI
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function getResponseFromAPI(string $action, array $parameters = []): stdClass
{
$mandatoryParameters = [
'wlLogin' => $this->lemonwayCredentials->getUsername(),
'wlPass' => $this->lemonwayCredentials->getPassword(),
Method toArray
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function toArray(): array
{
$arrayToReturn = [
'id' => $this->getId(),
'balance' => $this->getBalance(),
Method __construct
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
CredentialsModel $lemonwayCredentials,
string $directKitUrl,
string $version = self::DEFAULT_VERSION,
string $language = self::DEFAULT_LANGUAGE,
$ip = null