for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Workarea\Controller;
use Drone\Mvc\AbstractionController;
use Exception;
class Start extends AbstractionController
{
/**
* Shows the dashboard
*
* @return array
*/
public function index()
# data to send
$data = [];
# SUCCESS-MESSAGE
$data["process"] = "success";
return $data;
}