for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yarak\Commands;
class Migrate extends YarakCommand
{
/**
* Configure the command.
*/
protected function configure()
$this->setName('migrate')
->setDescription('Run the database migrations.')
->setHelp('This command allows you to run migrations.');
}
* Handle the command.
protected function handle()
$this->getMigrator($this->getOutput())->run();