Hi ZF team! Just a little thing: How can I check if the `request` scheme is `https`? Regardless the `getScheme()` method, does the `Request` class has a method for that? I can get the scheme: ```php $request = $this->request->getUri(); return ($request->getScheme() === 'https'); ``` So, where should I add this validation for make it available for all controllers? Anyways, would be great add this method on the `Request` object. ```php $this->request->isSecure() // or maybe $this->request->isHttps() ``` Thanks! great project :1st_place_medal:
Hi ZF team! Just a little thing:
How can I check if the
requestscheme ishttps?Regardless the
getScheme()method, does theRequestclass has a method for that?I can get the scheme:
So, where should I add this validation for make it available for all controllers?
Anyways, would be great add this method on the
Requestobject.Thanks! great project 🥇