modules/stanford_policy/src/EventSubscriber/StanfordPolicySubscriber.php
Method getRomanNumeral
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected function getRomanNumeral(int $num): string {
$map = [
'M' => 1000,
'CM' => 900,
'D' => 500,
The class StanfordPolicySubscriber has a coupling between objects value of 14. Consider to reduce the number of dependencies under 13. Open
Open
class StanfordPolicySubscriber implements EventSubscriberInterface {
/**
* Flag to prevent recursion.
*
- Read upRead up
- Exclude checks
CouplingBetweenObjects
Since: 1.1.0
A class with too many dependencies has negative impacts on several quality aspects of a class. This includes quality criteria like stability, maintainability and understandability
Example
class Foo {
/**
* @var \foo\bar\X
*/
private $x = null;
/**
* @var \foo\bar\Y
*/
private $y = null;
/**
* @var \foo\bar\Z
*/
private $z = null;
public function setFoo(\Foo $foo) {}
public function setBar(\Bar $bar) {}
public function setBaz(\Baz $baz) {}
/**
* @return \SplObjectStorage
* @throws \OutOfRangeException
* @throws \InvalidArgumentException
* @throws \ErrorException
*/
public function process(\Iterator $it) {}
// ...
}
Source https://phpmd.org/rules/design.html#couplingbetweenobjects
syntax error, unexpected 'protected' (T_PROTECTED), expecting variable (T_VARIABLE)
Open
Open
public function __construct(protected BookManagerInterface $bookManager, protected ConfigPagesLoaderServiceInterface $configPagesLoader, protected EntityTypeManagerInterface $entityTypeManager) {
- Exclude checks
Line indented incorrectly; expected 4 spaces, found 6 Invalid
Invalid
'alpha_uppercase' => $letters[$position - 1],
- Exclude checks