phossa2/event

View on GitHub
src/Event/StaticEventDispatcher.php

Summary

Maintainability
A
0 mins
Test Coverage

The variable $event_manager is not named in camelCase.
Open

    public static function getEventManager()
    {
        if (!isset(self::$event_manager[get_called_class()])) {
            self::$event_manager[get_called_class()] =
                EventDispatcher::getShareable(static::$static_scope);
Severity: Minor
Found in src/Event/StaticEventDispatcher.php by phpmd

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $event_manager is not named in camelCase.
Open

    public static function setEventManager(EventManagerInterface $eventManager)
    {
        self::$event_manager[get_called_class()] = $eventManager;
    }
Severity: Minor
Found in src/Event/StaticEventDispatcher.php by phpmd

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $event_manager is not named in camelCase.
Open

    public static function getEventManager()
    {
        if (!isset(self::$event_manager[get_called_class()])) {
            self::$event_manager[get_called_class()] =
                EventDispatcher::getShareable(static::$static_scope);
Severity: Minor
Found in src/Event/StaticEventDispatcher.php by phpmd

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $event_manager is not named in camelCase.
Open

    public static function getEventManager()
    {
        if (!isset(self::$event_manager[get_called_class()])) {
            self::$event_manager[get_called_class()] =
                EventDispatcher::getShareable(static::$static_scope);
Severity: Minor
Found in src/Event/StaticEventDispatcher.php by phpmd

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

There are no issues that match your filters.

Category
Status