Function buildDiscounts
has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring. Open
public function buildDiscounts(Collection $discounts, string $currency): array
{
$temp = [];
if ($discounts->isNotEmpty()) {
foreach ($discounts as $discount) {
- Read upRead up
- Create a ticketCreate a ticket
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 buildTaxes
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
public function buildTaxes(Collection $taxes): array
{
$temp = [];
if ($taxes->isNotEmpty()) {
foreach ($taxes as $tax) {
- Read upRead up
- Create a ticketCreate a ticket
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 buildDiscounts
has 38 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function buildDiscounts(Collection $discounts, string $currency): array
{
$temp = [];
if ($discounts->isNotEmpty()) {
foreach ($discounts as $discount) {
- Create a ticketCreate a ticket
Method buildProducts
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function buildProducts(Collection $products, string $currency): array
{
$temp = [];
if ($products->isNotEmpty()) {
foreach ($products as $product) {
- Create a ticketCreate a ticket
Function buildProducts
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public function buildProducts(Collection $products, string $currency): array
{
$temp = [];
if ($products->isNotEmpty()) {
foreach ($products as $product) {
- Read upRead up
- Create a ticketCreate a ticket
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"