for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Laravel\Forge\Deployment\Commands;
use Laravel\Forge\Resource;
use Laravel\Forge\Commands\ResourceCommand;
use Laravel\Forge\Commands\BooleanResponseTrait;
use Laravel\Forge\Commands\NotSupportingResourceClassTrait;
class DeployCommand extends ResourceCommand
{
use NotSupportingResourceClassTrait, BooleanResponseTrait;
/**
* Site resource path.
*
* @return string
*/
public function resourcePath()
return 'deployment/deploy';
}