Showing 21 of 24 total issues
ArrayCollection
has 32 functions (exceeds 20 allowed). Consider refactoring. Open
class ArrayCollection implements Collection
{
/**
* An array containing the entries of this collection.
*
CoverFishPHPUnitTest
has 29 functions (exceeds 20 allowed). Consider refactoring. Open
class CoverFishPHPUnitTest
{
/**
* @var bool
*/
BaseCoverFishValidator
has 28 functions (exceeds 20 allowed). Consider refactoring. Open
class BaseCoverFishValidator implements BaseCoverFishValidatorInterface
{
/**
* @var ArrayCollection
*/
File BaseCoverFishValidator.php
has 280 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
namespace DF\PHPCoverFish\Validator\Base;
use DF\PHPCoverFish\Common\ArrayCollection;
Method configure
has 63 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function configure()
{
$this
->setName('scan')
->setDescription('scan phpunit test files for static code analysis')
BaseCoverFishResult
has 23 functions (exceeds 20 allowed). Consider refactoring. Open
class BaseCoverFishResult
{
/**
* @var bool
*/
CoverFishResult
has 22 functions (exceeds 20 allowed). Consider refactoring. Open
class CoverFishResult extends BaseCoverFishResult
{
/**
* @var ArrayCollection
*/
BaseScanner
has 22 functions (exceeds 20 allowed). Consider refactoring. Open
class BaseScanner
{
/**
* @var string
*/
Method getErrorStreamTemplate
has 55 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function getErrorStreamTemplate(CoverFishMapping $coverMapping, $noAnsiColors = false)
{
$coverLine = null;
switch ($this->getMessageCode()) {
case self::PHPUNIT_REFLECTION_CLASS_NOT_FOUND:
CoverFishHelper
has 21 functions (exceeds 20 allowed). Consider refactoring. Open
class CoverFishHelper
{
const PHPUNIT_ID_INTERFACE = 'PHPUnit_Framework_Test',
PHPUNIT_ID_CLASS = 'PHPUnit_Framework_TestCase';
Function getErrorStreamTemplate
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
public function getErrorStreamTemplate(CoverFishMapping $coverMapping, $noAnsiColors = false)
{
$coverLine = null;
switch ($this->getMessageCode()) {
case self::PHPUNIT_REFLECTION_CLASS_NOT_FOUND:
- 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 writeSingleTestResult
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
private function writeSingleTestResult(
CoverFishPHPUnitFile $coverFishUnitFile,
CoverFishResult $coverFishResult
) {
- 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 validateReflectionClassForAccessorVisibility
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function validateReflectionClassForAccessorVisibility($classFQN, $accessor)
{
$reflectionClass = $this->getReflectionClass($classFQN);
if ($reflectionClass instanceof CoverFishMessageError) {
return $reflectionClass;
Method getWarningStreamTemplate
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function getWarningStreamTemplate(CoverFishMapping $coverMapping, $noAnsiColors = false)
{
$coverLine = null;
switch ($this->getMessageCode()) {
case self::PHPUNIT_NO_COVERAGE_FOR_METHOD:
Method writeProgress
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function writeProgress($status)
{
$this->resetJsonResult();
switch ($status) {
Function validateReflectionClassForAccessorVisibility
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public function validateReflectionClassForAccessorVisibility($classFQN, $accessor)
{
$reflectionClass = $this->getReflectionClass($classFQN);
if ($reflectionClass instanceof CoverFishMessageError) {
return $reflectionClass;
- 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 writeSingleMappingResult
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
private function writeSingleMappingResult(
CoverFishPHPUnitTest $coverFishTest,
CoverFishResult $coverFishResult
) {
/** @var CoverFishMapping $coverMappings */
- 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 getWarningStreamTemplate
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function getWarningStreamTemplate(CoverFishMapping $coverMapping, $noAnsiColors = false)
{
$coverLine = null;
switch ($this->getMessageCode()) {
case self::PHPUNIT_NO_COVERAGE_FOR_METHOD:
- 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 getTestSuiteNodeFromXML
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public function getTestSuiteNodeFromXML(\SimpleXMLElement $xmlDocumentNodes) {
/** @var \SimpleXMLElement $suite */
foreach ($xmlDocumentNodes->testsuites->testsuite as $suite) {
- 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 writeProgress
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
protected function writeProgress($status)
{
$this->resetJsonResult();
switch ($status) {
- 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"