Showing 591 of 591 total issues
The method I_can_get_translation_for_few_with_decimal is not named in camelCase. Open
public function I_can_get_translation_for_few_with_decimal()
{
if ((new \ReflectionClass(self::getSutClass()))->isAbstract()) {
self::assertFalse(false, 'Can not create enum from abstract class');
- 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 It_is_code is not named in camelCase. Open
public function It_is_code()
{
self::assertTrue(
class_exists(self::getSutClass()),
self::getSutClass() . ' has not been found, check namespace of its test ' . static::class
- 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_get_false_when_asking_if_has_null is not named in camelCase. Open
public function I_get_false_when_asking_if_has_null()
{
$sutClass = self::getSutClass();
self::assertFalse($sutClass::hasIt(null));
}
- 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 All_of_them_are_code is not named in camelCase. Open
public function All_of_them_are_code()
{
foreach ($this->getCodeClasses() as $codeClass) {
self::assertTrue(
class_exists($codeClass),
- 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_get_body_property_codes is not named in camelCase. Open
public function I_can_get_body_property_codes()
{
self::assertEquals(
[
'age',
- 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_get_remarkable_property_codes is not named in camelCase. Open
public function I_can_get_remarkable_property_codes()
{
self::assertSame(
RemarkableSenseCode::getPossibleValues(),
PropertyCode::getRemarkableSensePropertyPossibleValues()
- 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_use_it_as_a_generic_code is not named in camelCase. Open
public function I_can_use_it_as_a_generic_code()
{
self::assertTrue(is_a(self::getSutClass(), Code::class, true), 'Should be child of ' . Code::class);
}
- 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_easily_find_out_if_sub_race_belongs_to_race is not named in camelCase. Open
public function I_can_easily_find_out_if_sub_race_belongs_to_race()
{
foreach ($this->getExpectedRacesToSubRaces() as $race => $subRaces) {
$raceCode = RaceCode::getIt($race);
foreach ($subRaces as $subRace) {
- 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_get_original_value is not named in camelCase. Open
public function I_can_get_original_value()
{
/** @var AbstractTheurgistCode $sutClass */
$sutClass = self::getSutClass();
foreach ($sutClass::getPossibleValues() as $value) {
- 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_create_code_from_unknown_value is not named in camelCase. Open
public function I_can_not_create_code_from_unknown_value()
{
$this->expectException(\DrdPlus\Codes\Partials\Exceptions\UnknownValueForCode::class);
$this->expectExceptionMessageMatches('~da Vinci~');
if ((new \ReflectionClass(self::getSutClass()))->isAbstract()) {
- 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_get_base_property_codes is not named in camelCase. Open
public function I_can_get_base_property_codes()
{
self::assertSame(
[
'strength',
- 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_get_its_english_translation is not named in camelCase. Open
public function I_can_get_its_english_translation()
{
/** @var AbstractTheurgistCode $sutClass */
$sutClass = self::getSutClass();
foreach ($sutClass::getPossibleValues() as $value) {
- 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 All_constants_can_be_given_by_getter is not named in camelCase. Open
public function All_constants_can_be_given_by_getter()
{
foreach ($this->getCodeClasses() as $codeClass) {
$constantValues = (new \ReflectionClass($codeClass))->getConstants();
sort($constantValues); // re-index by numbers
- 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_get_its_czech_translation is not named in camelCase. Open
public function I_can_get_its_czech_translation()
{
/** @var AbstractTheurgistCode $sutClass */
$sutClass = self::getSutClass();
foreach ($sutClass::getPossibleValues() as $value) {
- 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_create_code_from_invalid_value_format is not named in camelCase. Open
public function I_can_not_create_code_from_invalid_value_format(string $codeClass)
{
$this->expectException(\Granam\ScalarEnum\Exceptions\WrongValueForScalarEnum::class);
$this->expectExceptionMessageMatches('~\DateTime~');
/** @var AbstractCode $codeClass */
- 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_empty_string_for_translation_of_custom_code is not named in camelCase. Open
public function I_can_not_use_empty_string_for_translation_of_custom_code()
{
$this->expectException(\DrdPlus\Codes\Partials\Exceptions\InvalidTranslationFormat::class);
$this->expectExceptionMessageMatches("~''~");
/** like @see \DrdPlus\Codes\Armaments\ArrowCode::addNewArrowCode */
- 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_get_races_to_sub_races_codes is not named in camelCase. Open
public function I_can_get_races_to_sub_races_codes()
{
self::assertEquals($this->getExpectedRacesToSubRaces(), SubRaceCode::getRaceToSubRaceValues());
self::assertSame(
SubRaceCode::getPossibleValues(),
- 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 All_public_constants_can_be_given_by_getter is not named in camelCase. Open
public function All_public_constants_can_be_given_by_getter()
{
$sutClass = self::getSutClass();
/** @noinspection PhpUnhandledExceptionInspection */
$constants = (new \ReflectionClass($sutClass))->getConstants();
- 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_get_it_with_default_value_when_requested_unknown_value is not named in camelCase. Open
public function I_can_get_it_with_default_value_when_requested_unknown_value()
{
$sut = $this->findSut('Particle from outer word');
$sutClass = static::getSutClass();
self::assertSame(
- 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 All_public_constants_can_be_given_by_getter is not named in camelCase. Open
public function All_public_constants_can_be_given_by_getter()
{
$constants = $this->sutReflection->getConstants();
self::assertEquals($constants, array_unique($constants));
asort($constants);
- 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() {
}
}