Avoid using static access to class '\Spatie\Permission\Models\Role' in method 'run'. Open
$admin = Role::findOrCreate(UserRole::ADMIN, 'api');
- 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 '\EscolaLms\Webinar\Enum\WebinarPermissionsEnum' in method 'run'. Open
foreach (WebinarPermissionsEnum::getValues() as $permission) {
- 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 '\Spatie\Permission\Models\Role' in method 'run'. Open
$tutor = Role::findOrCreate(UserRole::TUTOR, 'api');
- 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 '\Spatie\Permission\Models\Permission' in method 'run'. Open
Permission::findOrCreate($permission, 'api');
- 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
Reference to constant ADMIN
from undeclared class \EscolaLms\Core\Enums\UserRole
Open
$admin = Role::findOrCreate(UserRole::ADMIN, 'api');
- Exclude checks
Call to method findOrCreate
from undeclared class \Spatie\Permission\Models\Permission
Open
Permission::findOrCreate($permission, 'api');
- Exclude checks
Call to method findOrCreate
from undeclared class \Spatie\Permission\Models\Role
Open
$admin = Role::findOrCreate(UserRole::ADMIN, 'api');
- Exclude checks
Call to method findOrCreate
from undeclared class \Spatie\Permission\Models\Role
Open
$tutor = Role::findOrCreate(UserRole::TUTOR, 'api');
- Exclude checks
Reference to constant TUTOR
from undeclared class \EscolaLms\Core\Enums\UserRole
Open
$tutor = Role::findOrCreate(UserRole::TUTOR, 'api');
- Exclude checks
Static call to undeclared method \EscolaLms\Webinar\Enum\WebinarPermissionsEnum::getValues
Open
foreach (WebinarPermissionsEnum::getValues() as $permission) {
- Exclude checks
Class extends undeclared class \Illuminate\Database\Seeder
Open
class WebinarsPermissionSeeder extends Seeder
- Exclude checks