Minor changes in kernel code.

This commit is contained in:
James Cole
2020-11-25 06:25:08 +01:00
parent 9a658b60fb
commit 16018109c8
3 changed files with 17 additions and 6 deletions

View File

@@ -35,19 +35,23 @@ use FireflyIII\Support\System\GeneratesInstallationId;
class InstallationId
{
use GeneratesInstallationId;
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param Closure $next
*
* @throws FireflyException
*
* @return mixed
*
* @throws FireflyException
*
*/
public function handle($request, Closure $next)
{
$this->generateInstallationId();
return $next($request);