Avoid using static access to class '\DrdPlus\Stamina\Fatigue' in method 'I_can_not_use_negative_value'. Open
Fatigue::getEnum(-1);
- Read upRead up
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\DrdPlus\Stamina\Fatigue' in method 'I_am_stopped_by_specific_exception_on_invalid_value'. Open
Fatigue::getIt('Drastic teaching');
- Read upRead up
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\DrdPlus\Stamina\Fatigue' in method 'I_can_not_use_negative_value'. Open
$fatigue = Fatigue::getIt(0);
- Read upRead up
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\DrdPlus\Stamina\Fatigue' in method 'I_can_use_it_as_an_integer'. Open
$fatigue = Fatigue::getIt(123);
- Read upRead up
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
The method I_can_use_it_as_an_integer is not named in camelCase. Open
public function I_can_use_it_as_an_integer(): void
{
$fatigue = Fatigue::getIt(123);
self::assertInstanceOf(IntegerInterface::class, $fatigue);
self::assertSame(123, $fatigue->getValue());
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method I_can_not_use_negative_value is not named in camelCase. Open
public function I_can_not_use_negative_value(): void
{
$fatigue = Fatigue::getIt(0);
self::assertInstanceOf(PositiveInteger::class, $fatigue);
self::assertSame(0, $fatigue->getValue());
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method I_am_stopped_by_specific_exception_on_invalid_value is not named in camelCase. Open
public function I_am_stopped_by_specific_exception_on_invalid_value(): void
{
$this->expectException(\Granam\IntegerEnum\Exceptions\WrongValueForIntegerEnum::class);
$this->expectExceptionMessageMatches('~Drastic teaching~');
Fatigue::getIt('Drastic teaching');
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}