for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Laravel\Forge\Daemons\Commands;
class CreateDaemonCommand extends DaemonCommand
{
/**
* Set the command.
*
* @param string $command
* @return static
*/
public function start(string $command)
return $this->attachPayload('command', $command);
}
* Set the user of command.
* @param string $user
public function runningAs(string $user)
return $this->attachPayload('user', $user);