open-orchestra/open-orchestra-cms-bundle

View on GitHub
Backoffice/Event/SiteCommandEvent.php

Summary

Maintainability
A
0 mins
Test Coverage

Return type of getIo() is undeclared type \Symfony\Component\Console\Style\SymfonyStyle
Open

    public function getIo()
Severity: Minor
Found in Backoffice/Event/SiteCommandEvent.php by phan

Class extends undeclared class \Symfony\Component\EventDispatcher\Event
Open

class SiteCommandEvent extends Event
Severity: Critical
Found in Backoffice/Event/SiteCommandEvent.php by phan

Parameter $io has undeclared type \Symfony\Component\Console\Style\SymfonyStyle
Open

    public function __construct(SiteInterface $site, SymfonyStyle $io)
Severity: Minor
Found in Backoffice/Event/SiteCommandEvent.php by phan

Parameter $site has undeclared type \OpenOrchestra\ModelInterface\Model\SiteInterface
Open

    public function __construct(SiteInterface $site, SymfonyStyle $io)
Severity: Minor
Found in Backoffice/Event/SiteCommandEvent.php by phan

Return type of getSite() is undeclared type \OpenOrchestra\ModelInterface\Model\SiteInterface
Open

    public function getSite()
Severity: Minor
Found in Backoffice/Event/SiteCommandEvent.php by phan

Avoid variables with short names like $io. Configured minimum length is 3.
Open

    protected $io;
Severity: Minor
Found in Backoffice/Event/SiteCommandEvent.php by phpmd

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

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

Avoid variables with short names like $io. Configured minimum length is 3.
Open

    public function __construct(SiteInterface $site, SymfonyStyle $io)
Severity: Minor
Found in Backoffice/Event/SiteCommandEvent.php by phpmd

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

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

There are no issues that match your filters.

Category
Status