Showing 16 of 18 total issues
File Client.php
has 401 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
namespace Phpforce\SoapClient;
use Phpforce\Common\AbstractHasDispatcher;
Client
has 41 functions (exceeds 20 allowed). Consider refactoring. Open
class Client extends AbstractHasDispatcher implements ClientInterface
{
/*
* SOAP namespace
*
Field
has 35 functions (exceeds 20 allowed). Consider refactoring. Open
class Field
{
protected $autoNumber;
protected $byteLength;
protected $calculated;
DescribeSObjectResult
has 26 functions (exceeds 20 allowed). Consider refactoring. Open
class DescribeSObjectResult
{
protected $activateable;
protected $childRelationships;
protected $createable;
Function getSoapTypes
has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring. Open
public function getSoapTypes()
{
if (null === $this->types) {
$soapTypes = $this->__getTypes();
- 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
GetUserInfoResult
has 22 functions (exceeds 20 allowed). Consider refactoring. Open
class GetUserInfoResult
{
protected $accessibilityMode;
protected $currencySymbol;
Function createSObject
has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring. Open
protected function createSObject($object, $objectType)
{
$sObject = new \stdClass();
foreach (get_object_vars($object) as $field => $value) {
- 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 createSObject
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function createSObject($object, $objectType)
{
$sObject = new \stdClass();
foreach (get_object_vars($object) as $field => $value) {
Function merge
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
public function merge(array $mergeRequests, $type)
{
foreach ($mergeRequests as $mergeRequest) {
if (!($mergeRequest instanceof Request\MergeRequest)) {
throw new \InvalidArgumentException(
- 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
Function flush
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
public function flush()
{
if (count($this->bulkDeleteRecords) > 0) {
$this->results['deleted'] = array_merge($this->results['deleted'], $this->flushDeletes());
}
- 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 merge
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function merge(array $mergeRequests, $type)
{
foreach ($mergeRequests as $mergeRequest) {
if (!($mergeRequest instanceof Request\MergeRequest)) {
throw new \InvalidArgumentException(
Function checkResult
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
protected function checkResult(array $results, array $params)
{
$exceptions = new Exception\SaveException();
for ($i = 0; $i < count($results); $i++) {
- 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 __construct
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
public function __construct($wsdl, $username, $password, $token, array $soapOptions = array(), $environment = 'prod')
Function call
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
protected function call($method, array $params = array())
{
$this->init();
// Prepare headers
- 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
Function getObjectAt
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
protected function getObjectAt($pointer)
{
if ($this->queryResult->getRecord($pointer)) {
$this->current = $this->queryResult->getRecord($pointer);
- 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
Function createSoapVars
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
protected function createSoapVars(array $objects, $type)
{
$soapVars = array();
foreach ($objects as $object) {
- 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"