Showing 24 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
*/
Similar blocks of code found in 3 locations. Consider refactoring. Open
case self::PHPUNIT_NO_DOCBLOCK_FOR_METHOD:
$coverLine = sprintf('no phpdoc block for %s::%s', $coverMapping->getClassFQN(), $coverMapping->getMethod());
if (!$noAnsiColors) {
$coverLine = Color::tplNormalColor('no phpdoc block for ');
$coverLine .= Color::tplYellowColor($coverMapping->getClassFQN());
- Read upRead up
Duplicated Code
Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:
Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.
When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).
Tuning
This issue has a mass of 131.
We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.
The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.
If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.
See codeclimate-duplication
's documentation for more information about tuning the mass threshold in your .codeclimate.yml
.
Refactorings
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
Similar blocks of code found in 3 locations. Consider refactoring. Open
case self::PHPUNIT_REFLECTION_CLASS_NOT_FOUND:
$coverLine = sprintf('@covers %s::%s', $coverMapping->getClassFQN(), $coverMapping->getMethod());
if (!$noAnsiColors) {
$coverLine = Color::tplNormalColor('@covers ');
$coverLine .= Color::tplMarkFailure($coverMapping->getClassFQN());
- Read upRead up
Duplicated Code
Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:
Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.
When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).
Tuning
This issue has a mass of 131.
We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.
The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.
If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.
See codeclimate-duplication
's documentation for more information about tuning the mass threshold in your .codeclimate.yml
.
Refactorings
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
Similar blocks of code found in 3 locations. Consider refactoring. Open
case self::PHPUNIT_NO_COVERAGE_FOR_METHOD:
$coverLine = sprintf('no @covers annotation for %s::%s', $coverMapping->getClassFQN(), $coverMapping->getMethod());
if (!$noAnsiColors) {
$coverLine = Color::tplNormalColor('no @covers annotation for ');
$coverLine .= Color::tplYellowColor($coverMapping->getClassFQN());
- Read upRead up
Duplicated Code
Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:
Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.
When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).
Tuning
This issue has a mass of 131.
We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.
The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.
If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.
See codeclimate-duplication
's documentation for more information about tuning the mass threshold in your .codeclimate.yml
.
Refactorings
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
BaseScanner
has 22 functions (exceeds 20 allowed). Consider refactoring. Open
class BaseScanner
{
/**
* @var string
*/
CoverFishResult
has 22 functions (exceeds 20 allowed). Consider refactoring. Open
class CoverFishResult extends BaseCoverFishResult
{
/**
* @var ArrayCollection
*/
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 writeProgress
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function writeProgress($status)
{
$this->resetJsonResult();
switch ($status) {
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:
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"