for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Laravel\Forge\Configs\Commands;
use Laravel\Forge\Commands\BooleanResponseTrait;
use Laravel\Forge\Commands\NotSupportingResourceClassTrait;
class UpdateConfigFileCommand extends ConfigFileCommand
{
use NotSupportingResourceClassTrait, BooleanResponseTrait;
/**
* HTTP request method.
*
* @return string
*/
public function requestMethod()
return 'PUT';
}