src/CoreBundle/Migrations/Schema/V200/Version20240414120300.php
Avoid unused local variables such as '$category'. Open
Open
foreach ($categorizedSettings as $category => $settings) {
- Read upRead up
- Exclude checks
UnusedLocalVariable
Since: 0.2
Detects when a local variable is declared and/or assigned, but not used.
Example
class Foo {
public function doSomething()
{
$i = 5; // Unused
}
}
Source https://phpmd.org/rules/unusedcode.html#unusedlocalvariable
Avoid unused parameters such as '$schema'. Open
Open
public function down(Schema $schema): void {}
- Read upRead up
- Exclude checks
UnusedFormalParameter
Since: 0.2
Avoid passing parameters to methods or constructors and then not using those parameters.
Example
class Foo
{
private function bar($howdy)
{
// $howdy is not used
}
}
Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter
Avoid unused parameters such as '$schema'. Open
Open
public function up(Schema $schema): void
- Read upRead up
- Exclude checks
UnusedFormalParameter
Since: 0.2
Avoid passing parameters to methods or constructors and then not using those parameters.
Example
class Foo
{
private function bar($howdy)
{
// $howdy is not used
}
}
Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter
Add a single space around assignment operators Open
Open
declare(strict_types=1);
- Exclude checks
Missing class doc comment Open
Open
class Version20240414120300 extends AbstractMigrationChamilo
- Exclude checks
Closing brace must be on a line by itself Open
Open
public function down(Schema $schema): void {}
- Exclude checks
Missing function doc comment Open
Open
public function getDescription(): string
- Exclude checks
Missing function doc comment Open
Open
public function up(Schema $schema): void
- Exclude checks
Missing function doc comment Open
Open
public function down(Schema $schema): void {}
- Exclude checks
Opening brace should be on a new line Open
Open
public function down(Schema $schema): void {}
- Exclude checks
Closing brace must be on a line by itself Open
Open
public function down(Schema $schema): void {}
- Exclude checks