for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace agoalofalife;
class ManagerSeeder
{
protected $seeders;
public function __construct(array $seeders)
$this->seeders = $seeders;
}
public function run()
foreach ($this->seeders as $seeder)
$seeder->run();