database/migrations/2022_03_31_072718_add_sender_status_in_webinar.php
Avoid using static access to class '\Illuminate\Support\Facades\Schema' in method 'down'. Open
Open
Schema::table('webinars', function (Blueprint $table) {
$table->dropColumn('reminder_status');
});
- Read upRead up
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\Illuminate\Support\Facades\Schema' in method 'up'. Open
Open
Schema::table('webinars', function (Blueprint $table) {
$table->string('reminder_status', 30)->nullable();
});
- Read upRead up
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Call to method table
from undeclared class \Illuminate\Support\Facades\Schema
Open
Open
Schema::table('webinars', function (Blueprint $table) {
- Exclude checks
Call to method dropColumn
from undeclared class \Illuminate\Database\Schema\Blueprint
Open
Open
$table->dropColumn('reminder_status');
- Exclude checks
Parameter $table
has undeclared type \Illuminate\Database\Schema\Blueprint
Open
Open
Schema::table('webinars', function (Blueprint $table) {
- Exclude checks
Parameter $table
has undeclared type \Illuminate\Database\Schema\Blueprint
Open
Open
Schema::table('webinars', function (Blueprint $table) {
- Exclude checks
Call to method table
from undeclared class \Illuminate\Support\Facades\Schema
Open
Open
Schema::table('webinars', function (Blueprint $table) {
- Exclude checks
Class extends undeclared class \Illuminate\Database\Migrations\Migration
Open
Open
class AddSenderStatusInWebinar extends Migration
- Exclude checks
Call to method string
from undeclared class \Illuminate\Database\Schema\Blueprint
Open
Open
$table->string('reminder_status', 30)->nullable();
- Exclude checks
Avoid using short method names like AddSenderStatusInWebinar::up(). The configured minimum method name length is 3. Open
Open
public function up()
{
Schema::table('webinars', function (Blueprint $table) {
$table->string('reminder_status', 30)->nullable();
});
- Read upRead up
- Exclude checks
ShortMethodName
Since: 0.2
Detects when very short method names are used.
Example
class ShortMethod {
public function a( $index ) { // Violation
}
}
Source https://phpmd.org/rules/naming.html#shortmethodname
Each class must be in a namespace of at least one level (a top-level vendor name) Open
Open
class AddSenderStatusInWebinar extends Migration
- Exclude checks