for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dennis\Seeder\Tests\Functional\Seeder;
use Dennis\Seeder;
/**
* Class User
* @package Dennis\Seeder\Seeder
*
* @example
*/
class SubGroup extends Seeder\Seeder\DatabaseSeeder
{
* Run the database seeds.
* @return void
public function run()
$this->factory->create('fe_groups', 1)->each(function (Seeder\Seed $seed, Seeder\Faker $faker) {
$faker
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$seed->set([
'title' => 'SubGroup',
]);
});
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.