steeffeen/FancyManiaLinks

View on GitHub
FML/Controls/Quads/Quad_Icons128x32_1.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

The class Quad_Icons128x32_1 is not named in CamelCase.
Open

class Quad_Icons128x32_1 extends Quad
{

    /*
     * Constants

CamelCaseClassName

Since: 0.2

It is considered best practice to use the CamelCase notation to name classes.

Example

class class_name {
}

Source

Class constants must be uppercase; expected SUBSTYLE_ARROWUP but found SUBSTYLE_ArrowUp
Open

    const SUBSTYLE_ArrowUp         = 'ArrowUp';

Class constants must be uppercase; expected SUBSTYLE_EMPTY but found SUBSTYLE_Empty
Open

    const SUBSTYLE_Empty           = 'Empty';

Class constants must be uppercase; expected SUBSTYLE_MUSIC but found SUBSTYLE_Music
Open

    const SUBSTYLE_Music           = 'Music';

Class constants must be uppercase; expected SUBSTYLE_PAINTERFILL but found SUBSTYLE_PainterFill
Open

    const SUBSTYLE_PainterFill     = 'PainterFill';

Class constants must be uppercase; expected SUBSTYLE_RT_CUP but found SUBSTYLE_RT_Cup
Open

    const SUBSTYLE_RT_Cup          = 'RT_Cup';

Class constants must be uppercase; expected SUBSTYLE_SLIDERBAR but found SUBSTYLE_SliderBar
Open

    const SUBSTYLE_SliderBar       = 'SliderBar';

The closing brace for the class must go on the next line after the body
Open

}

Class constants must be uppercase; expected SUBSTYLE_RT_LAPS but found SUBSTYLE_RT_Laps
Open

    const SUBSTYLE_RT_Laps         = 'RT_Laps';

Class constants must be uppercase; expected SUBSTYLE_RT_TIMEATTACK but found SUBSTYLE_RT_TimeAttack
Open

    const SUBSTYLE_RT_TimeAttack   = 'RT_TimeAttack';

Class constants must be uppercase; expected SUBSTYLE_MINIMIZE but found SUBSTYLE_Minimize
Open

    const SUBSTYLE_Minimize        = 'Minimize';

Class constants must be uppercase; expected SUBSTYLE_MANIAPLANET but found SUBSTYLE_ManiaPlanet
Open

    const SUBSTYLE_ManiaPlanet     = 'ManiaPlanet';

Class constants must be uppercase; expected SUBSTYLE_PAINTERMIRROR but found SUBSTYLE_PainterMirror
Open

    const SUBSTYLE_PainterMirror   = 'PainterMirror';

Class constants must be uppercase; expected SUBSTYLE_WINDOWED but found SUBSTYLE_Windowed
Open

    const SUBSTYLE_Windowed        = 'Windowed';

Class constants must be uppercase; expected SUBSTYLE_SLIDERBAR2 but found SUBSTYLE_SliderBar2
Open

    const SUBSTYLE_SliderBar2      = 'SliderBar2';

Class constants must be uppercase; expected SUBSTYLE_BGQUADWHITE but found SUBSTYLE_BgQuadWhite
Open

    const SUBSTYLE_BgQuadWhite     = 'BgQuadWhite';

Class constants must be uppercase; expected SUBSTYLE_PAINTERBRUSH but found SUBSTYLE_PainterBrush
Open

    const SUBSTYLE_PainterBrush    = 'PainterBrush';

Class constants must be uppercase; expected SUBSTYLE_PAINTERLAYER but found SUBSTYLE_PainterLayer
Open

    const SUBSTYLE_PainterLayer    = 'PainterLayer';

Class constants must be uppercase; expected SUBSTYLE_SETTINGS but found SUBSTYLE_Settings
Open

    const SUBSTYLE_Settings        = 'Settings';

Class constants must be uppercase; expected SUBSTYLE_SLIDERCURSOR but found SUBSTYLE_SliderCursor
Open

    const SUBSTYLE_SliderCursor    = 'SliderCursor';

Class constants must be uppercase; expected SUBSTYLE_CLOSE but found SUBSTYLE_Close
Open

    const SUBSTYLE_Close           = 'Close';

Class constants must be uppercase; expected SUBSTYLE_MANIALINKHOME but found SUBSTYLE_ManiaLinkHome
Open

    const SUBSTYLE_ManiaLinkHome   = 'ManiaLinkHome';

Class constants must be uppercase; expected SUBSTYLE_RT_STUNTS but found SUBSTYLE_RT_Stunts
Open

    const SUBSTYLE_RT_Stunts       = 'RT_Stunts';

Class constants must be uppercase; expected SUBSTYLE_MANIALINKSWITCH but found SUBSTYLE_ManiaLinkSwitch
Open

    const SUBSTYLE_ManiaLinkSwitch = 'ManiaLinkSwitch';

Class constants must be uppercase; expected SUBSTYLE_PAINTERSTICKER but found SUBSTYLE_PainterSticker
Open

    const SUBSTYLE_PainterSticker  = 'PainterSticker';

Class constants must be uppercase; expected SUBSTYLE_RT_ROUNDS but found SUBSTYLE_RT_Rounds
Open

    const SUBSTYLE_RT_Rounds       = 'RT_Rounds';

Class constants must be uppercase; expected SUBSTYLE_URLBG but found SUBSTYLE_UrlBg
Open

    const SUBSTYLE_UrlBg           = 'UrlBg';

Class constants must be uppercase; expected SUBSTYLE_PAINTERTEAM but found SUBSTYLE_PainterTeam
Open

    const SUBSTYLE_PainterTeam     = 'PainterTeam';

Class constants must be uppercase; expected SUBSTYLE_RT_SCRIPT but found SUBSTYLE_RT_Script
Open

    const SUBSTYLE_RT_Script       = 'RT_Script';

Class constants must be uppercase; expected SUBSTYLE_RT_TEAM but found SUBSTYLE_RT_Team
Open

    const SUBSTYLE_RT_Team         = 'RT_Team';

Class constants must be uppercase; expected SUBSTYLE_SOUND but found SUBSTYLE_Sound
Open

    const SUBSTYLE_Sound           = 'Sound';

Constant SUBSTYLE_Close should be defined in uppercase
Open

    const SUBSTYLE_Close           = 'Close';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_Minimize should be defined in uppercase
Open

    const SUBSTYLE_Minimize        = 'Minimize';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_PainterTeam should be defined in uppercase
Open

    const SUBSTYLE_PainterTeam     = 'PainterTeam';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_RT_Stunts should be defined in uppercase
Open

    const SUBSTYLE_RT_Stunts       = 'RT_Stunts';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_SliderBar should be defined in uppercase
Open

    const SUBSTYLE_SliderBar       = 'SliderBar';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_UrlBg should be defined in uppercase
Open

    const SUBSTYLE_UrlBg           = 'UrlBg';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_Sound should be defined in uppercase
Open

    const SUBSTYLE_Sound           = 'Sound';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_ManiaLinkSwitch should be defined in uppercase
Open

    const SUBSTYLE_ManiaLinkSwitch = 'ManiaLinkSwitch';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_ManiaPlanet should be defined in uppercase
Open

    const SUBSTYLE_ManiaPlanet     = 'ManiaPlanet';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_SliderBar2 should be defined in uppercase
Open

    const SUBSTYLE_SliderBar2      = 'SliderBar2';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_PainterMirror should be defined in uppercase
Open

    const SUBSTYLE_PainterMirror   = 'PainterMirror';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_RT_Laps should be defined in uppercase
Open

    const SUBSTYLE_RT_Laps         = 'RT_Laps';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_RT_Script should be defined in uppercase
Open

    const SUBSTYLE_RT_Script       = 'RT_Script';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_PainterFill should be defined in uppercase
Open

    const SUBSTYLE_PainterFill     = 'PainterFill';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_Music should be defined in uppercase
Open

    const SUBSTYLE_Music           = 'Music';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_Empty should be defined in uppercase
Open

    const SUBSTYLE_Empty           = 'Empty';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_ManiaLinkHome should be defined in uppercase
Open

    const SUBSTYLE_ManiaLinkHome   = 'ManiaLinkHome';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_RT_TimeAttack should be defined in uppercase
Open

    const SUBSTYLE_RT_TimeAttack   = 'RT_TimeAttack';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_Windowed should be defined in uppercase
Open

    const SUBSTYLE_Windowed        = 'Windowed';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_PainterBrush should be defined in uppercase
Open

    const SUBSTYLE_PainterBrush    = 'PainterBrush';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_RT_Team should be defined in uppercase
Open

    const SUBSTYLE_RT_Team         = 'RT_Team';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_RT_Cup should be defined in uppercase
Open

    const SUBSTYLE_RT_Cup          = 'RT_Cup';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_ArrowUp should be defined in uppercase
Open

    const SUBSTYLE_ArrowUp         = 'ArrowUp';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_PainterLayer should be defined in uppercase
Open

    const SUBSTYLE_PainterLayer    = 'PainterLayer';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_Settings should be defined in uppercase
Open

    const SUBSTYLE_Settings        = 'Settings';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_BgQuadWhite should be defined in uppercase
Open

    const SUBSTYLE_BgQuadWhite     = 'BgQuadWhite';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_PainterSticker should be defined in uppercase
Open

    const SUBSTYLE_PainterSticker  = 'PainterSticker';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_RT_Rounds should be defined in uppercase
Open

    const SUBSTYLE_RT_Rounds       = 'RT_Rounds';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Constant SUBSTYLE_SliderCursor should be defined in uppercase
Open

    const SUBSTYLE_SliderCursor    = 'SliderCursor';

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

Source https://phpmd.org/rules/naming.html#constantnamingconventions

Class name "Quad_Icons128x32_1" is not in camel caps format
Open

class Quad_Icons128x32_1 extends Quad

There are no issues that match your filters.

Category
Status