Hello, Im trying to figure out whats wrong with my build url code using the fullbase option, its not working as described in the API:
https://api.cakephp.org/3.5/class-Cake.View.Helper.UrlHelper.html#_build
Using cake 3.5.12:
//option1
$this->Url->build([‘prefix’ => false, ‘controller’ => ‘reports’, ‘action’ => ‘results’, $report->id, $report->token], [‘fullBase’ => true, ‘escape’ => false]);
//generate : /reports/results/1853378873/o14Z0OGRqj
//option 2
$this->Url->build([‘prefix’ => false, ‘controller’ => ‘reports’, ‘action’ => ‘results’, $report->id, $report->token], true);
//generate : /reports/results/1853378873/o14Z0OGRqj
whats wrong with fullBase?