for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Basis\Job\Module;
use Basis\Job;
use Exception;
class Bootstrap extends Job
{
public function run()
$this->dispatch('module.defaults');
$this->dispatch('module.register');
try {
$this->dispatch('tarantool.migrate');
} catch (Exception $e) {
return [
'migration' => $e->getMessage(),
];
}