Remove abstract from auth bundle Generator and Voter service #194

This commit is contained in:
Kendrick Chan 2019-06-05 17:05:31 +08:00
parent 8737fbfe26
commit 238be17f6c
2 changed files with 2 additions and 4 deletions

View file

@ -9,8 +9,7 @@ use Symfony\Component\Config\Resource\FileResource;
use Symfony\Component\Routing\RouterInterface;
// NOTE: This class is inherited by the API Bundle and the main site
abstract class Generator
class Generator
{
protected $router;
protected $cache_dir;

View file

@ -6,8 +6,7 @@ use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Component\Security\Core\Authorization\Voter\Voter as BaseVoter;
use Symfony\Component\Security\Core\Security;
// NOTE: This class is inherited by the API Bundle and the main site
abstract class Voter extends BaseVoter
class Voter extends BaseVoter
{
protected $acl_gen;
protected $user_class;