Function replaceNestedDtoWithEntityInstanceIfIdsMatch
has a Cognitive Complexity of 35 (exceeds 10 allowed). Consider refactoring. Open
private function replaceNestedDtoWithEntityInstanceIfIdsMatch(
DataTransferObjectInterface $dto,
EntityInterface $entity
): void {
$dtoHash = spl_object_hash($dto);
- 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 getGettersForDtosOrCollections
has a Cognitive Complexity of 16 (exceeds 10 allowed). Consider refactoring. Open
private function getGettersForDtosOrCollections(DataTransferObjectInterface $dto): array
{
$dtoReflection = new ReflectionClass(get_class($dto));
$dtoGetters = [];
$collectionGetters = [];
- 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 deriveDtoAndEntityFqnFromCollection
has a Cognitive Complexity of 16 (exceeds 10 allowed). Consider refactoring. Open
private function deriveDtoAndEntityFqnFromCollection(Collection $collection): array
{
if (0 === $collection->count()) {
throw new RuntimeException('Collection is empty');
}
- 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 createEntity
has a Cognitive Complexity of 14 (exceeds 10 allowed). Consider refactoring. Open
private function createEntity(
string $entityFqn,
DataTransferObjectInterface $dto = null,
$isRootEntity = true
): EntityInterface {
- 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 replaceNestedDtosWithNewEntities
has a Cognitive Complexity of 12 (exceeds 10 allowed). Consider refactoring. Open
private function replaceNestedDtosWithNewEntities(DataTransferObjectInterface $dto): void
{
$getters = $this->getGettersForDtosOrCollections($dto);
if ([[], []] === $getters) {
return;
- 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 convertCollectionOfDtosToEntities
has a Cognitive Complexity of 11 (exceeds 10 allowed). Consider refactoring. Open
private function convertCollectionOfDtosToEntities(Collection $collection): void
{
if (0 === $collection->count()) {
return;
}
- 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"