steeffeen/FancyManiaLinks

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

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

The class Quad_UIConstructionBullet_Buttons is not named in CamelCase.
Open

class Quad_UIConstructionBullet_Buttons 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_PREVIEWMODE but found SUBSTYLE_PreviewMode
Open

    const SUBSTYLE_PreviewMode       = 'PreviewMode';

Class constants must be uppercase; expected SUBSTYLE_DELTAMODE but found SUBSTYLE_DeltaMode
Open

    const SUBSTYLE_DeltaMode         = 'DeltaMode';

Class constants must be uppercase; expected SUBSTYLE_DISC but found SUBSTYLE_Disc
Open

    const SUBSTYLE_Disc              = 'Disc';

Class constants must be uppercase; expected SUBSTYLE_POINT but found SUBSTYLE_Point
Open

    const SUBSTYLE_Point             = 'Point';

Class constants must be uppercase; expected SUBSTYLE_SOUNDMODE but found SUBSTYLE_SoundMode
Open

    const SUBSTYLE_SoundMode         = 'SoundMode';

Class constants must be uppercase; expected SUBSTYLE_SPHEREEMPTY but found SUBSTYLE_SphereEmpty
Open

    const SUBSTYLE_SphereEmpty       = 'SphereEmpty';

Class constants must be uppercase; expected SUBSTYLE_NEWRANDOMBULLET but found SUBSTYLE_NewRandomBullet
Open

    const SUBSTYLE_NewRandomBullet   = 'NewRandomBullet';

Class constants must be uppercase; expected SUBSTYLE_SMOKEDEBRISFOLDER but found SUBSTYLE_SmokeDebrisFolder
Open

    const SUBSTYLE_SmokeDebrisFolder = 'SmokeDebrisFolder';

Class constants must be uppercase; expected SUBSTYLE_SPHEREFULL but found SUBSTYLE_SphereFull
Open

    const SUBSTYLE_SphereFull        = 'SphereFull';

Class constants must be uppercase; expected SUBSTYLE_NEWBULLET but found SUBSTYLE_NewBullet
Open

    const SUBSTYLE_NewBullet         = 'NewBullet';

Class constants must be uppercase; expected SUBSTYLE_CIRCLE but found SUBSTYLE_Circle
Open

    const SUBSTYLE_Circle            = 'Circle';

Class constants must be uppercase; expected SUBSTYLE_EXPLOSIONMODE but found SUBSTYLE_ExplosionMode
Open

    const SUBSTYLE_ExplosionMode     = 'ExplosionMode';

Class constants must be uppercase; expected SUBSTYLE_POWERFOLDER but found SUBSTYLE_PowerFolder
Open

    const SUBSTYLE_PowerFolder       = 'PowerFolder';

Class constants must be uppercase; expected SUBSTYLE_ROOTMOTIONMODE but found SUBSTYLE_RootMotionMode
Open

    const SUBSTYLE_RootMotionMode    = 'RootMotionMode';

Class constants must be uppercase; expected SUBSTYLE_BLOCMODE but found SUBSTYLE_BlocMode
Open

    const SUBSTYLE_BlocMode          = 'BlocMode';

Class constants must be uppercase; expected SUBSTYLE_POWER but found SUBSTYLE_Power
Open

    const SUBSTYLE_Power             = 'Power';

Class constants must be uppercase; expected SUBSTYLE_ANIMMODE but found SUBSTYLE_AnimMode
Open

    const SUBSTYLE_AnimMode          = 'AnimMode';

Class constants must be uppercase; expected SUBSTYLE_CORE but found SUBSTYLE_Core
Open

    const SUBSTYLE_Core              = 'Core';

Class constants must be uppercase; expected SUBSTYLE_COREFOLDER but found SUBSTYLE_CoreFolder
Open

    const SUBSTYLE_CoreFolder        = 'CoreFolder';

Class constants must be uppercase; expected SUBSTYLE_TRAILFOLDER but found SUBSTYLE_TrailFolder
Open

    const SUBSTYLE_TrailFolder       = 'TrailFolder';

Class constants must be uppercase; expected SUBSTYLE_TRAIL but found SUBSTYLE_Trail
Open

    const SUBSTYLE_Trail             = 'Trail';

Class constants must be uppercase; expected SUBSTYLE_BULLETEDITORMODE but found SUBSTYLE_BulletEditorMode
Open

    const SUBSTYLE_BulletEditorMode  = 'BulletEditorMode';

Class constants must be uppercase; expected SUBSTYLE_SMOKEDEBRIS but found SUBSTYLE_SmokeDebris
Open

    const SUBSTYLE_SmokeDebris       = 'SmokeDebris';

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

}

Constant SUBSTYLE_Trail should be defined in uppercase
Open

    const SUBSTYLE_Trail             = 'Trail';

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_Disc should be defined in uppercase
Open

    const SUBSTYLE_Disc              = 'Disc';

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_Core should be defined in uppercase
Open

    const SUBSTYLE_Core              = 'Core';

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_PowerFolder should be defined in uppercase
Open

    const SUBSTYLE_PowerFolder       = 'PowerFolder';

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_SphereFull should be defined in uppercase
Open

    const SUBSTYLE_SphereFull        = 'SphereFull';

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_CoreFolder should be defined in uppercase
Open

    const SUBSTYLE_CoreFolder        = 'CoreFolder';

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_SmokeDebrisFolder should be defined in uppercase
Open

    const SUBSTYLE_SmokeDebrisFolder = 'SmokeDebrisFolder';

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_RootMotionMode should be defined in uppercase
Open

    const SUBSTYLE_RootMotionMode    = 'RootMotionMode';

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_NewBullet should be defined in uppercase
Open

    const SUBSTYLE_NewBullet         = 'NewBullet';

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_SmokeDebris should be defined in uppercase
Open

    const SUBSTYLE_SmokeDebris       = 'SmokeDebris';

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_Circle should be defined in uppercase
Open

    const SUBSTYLE_Circle            = 'Circle';

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_Point should be defined in uppercase
Open

    const SUBSTYLE_Point             = 'Point';

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_Power should be defined in uppercase
Open

    const SUBSTYLE_Power             = 'Power';

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_PreviewMode should be defined in uppercase
Open

    const SUBSTYLE_PreviewMode       = 'PreviewMode';

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_BulletEditorMode should be defined in uppercase
Open

    const SUBSTYLE_BulletEditorMode  = 'BulletEditorMode';

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_SoundMode should be defined in uppercase
Open

    const SUBSTYLE_SoundMode         = 'SoundMode';

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_BlocMode should be defined in uppercase
Open

    const SUBSTYLE_BlocMode          = 'BlocMode';

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_NewRandomBullet should be defined in uppercase
Open

    const SUBSTYLE_NewRandomBullet   = 'NewRandomBullet';

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_SphereEmpty should be defined in uppercase
Open

    const SUBSTYLE_SphereEmpty       = 'SphereEmpty';

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_TrailFolder should be defined in uppercase
Open

    const SUBSTYLE_TrailFolder       = 'TrailFolder';

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_DeltaMode should be defined in uppercase
Open

    const SUBSTYLE_DeltaMode         = 'DeltaMode';

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_ExplosionMode should be defined in uppercase
Open

    const SUBSTYLE_ExplosionMode     = 'ExplosionMode';

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_AnimMode should be defined in uppercase
Open

    const SUBSTYLE_AnimMode          = 'AnimMode';

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_UIConstructionBullet_Buttons" is not in camel caps format
Open

class Quad_UIConstructionBullet_Buttons extends Quad

There are no issues that match your filters.

Category
Status