We need to do custom logic at Session::get
like for example, for some reason, if it gets a null value do something else before returning null to the caller..
We had a look at extending the session here but the handler that we need to override is at vendor/laravel/framework/src/Illuminate/Session/Store.php
with method get
So, what is the recommended way to achieve the overriding of method get
at vendor/laravel/framework/src/Illuminate/Session/Store.php
?