__construct being called twice on custom page
This will output two results:
0.55048200 1680612812
0.55084500 1680612812
Why is that and how to fix it?
class MyPage extends Page
{
public function __construct()
{
Debugbar::info(microtime());
}
}