for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Commands\Images;
use App\Commands\BaseCommand;
class Push extends BaseCommand
{
/**
* The signature of the command.
*
* @var string
*/
protected $signature = 'images:push';
* The description of the command.
protected $description = 'Push the selected set of container images';
* Execute the console command.
* @return void
public function handle(): void
$this->porter->pushImages();
}