src/StackFormation/Diff.php
Showing 3 of 3 total issues
Method compare
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function compare() { if (empty($this->stack)) { throw new \InvalidArgumentException('Stack not set'); }
Function compare
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
Open
public function compare() { if (empty($this->stack)) { throw new \InvalidArgumentException('Stack not set'); }
- Read upRead up
Function parametersAreEqual
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Open
protected function parametersAreEqual(array $paramA, array $paramB) { // skip password fields while (($passWordKeyInA = array_search('****', $paramA)) !== false) { unset($paramA[$passWordKeyInA]);
- Read upRead up