gmarche/src/Framework/Auth/RoleMiddlewareFactory.php

25 lines
365 B
PHP

<?php
namespace Framework\Auth;
use Framework\Auth;
class RoleMiddlewareFactory
{
/**
* @var Auth
*/
private $auth;
public function __construct(Auth $auth)
{
$this->auth = $auth;
}
public function makeForRole($role, $role2): RoleMiddleware
{
return new RoleMiddleware($this->auth, $role, $role2);
}
}