for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spinen\Version\Commands;
/**
* Class PreReleaseVersionCommand
*
* @package Spinen\Version\Commands
*/
class PreReleaseVersionCommand extends VersionCommand
{
* The name and signature of the console command.
* @var string
protected $signature = 'version:pre_release';
* The console command description.
protected $description = 'Display pre_release version of the application.';
* Execute the console command.
* @return void
public function handle()
$this->info($this->version->pre_release);
}