for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace FlightLog\Http\Web\Controller;
final class FlightController extends WebController
{
public function view(){
$id = $this->request->getParam('id');
return $this->redirect(DOL_URL_ROOT.'/flightlog/card.php?id='.$id);
}