for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use App\Lib\Slime\Interfaces\DatabaseHelpers\DbHelperInterface;
class S1477152730UsersSeeder implements DbHelperInterface
{
public function run()
$faker = Faker\Factory::create();
$usersNumber = 10;
for ($i = 1; $i <= $usersNumber; $i++) {
\App\Models\Users\User::create(
create()
App\Models\Users\User
created()
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.
[
'name' => $faker->name,
'surname' => $faker->lastName,
'email' => $faker->email,
'age' => rand(15, 99),
]
);
}
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.