bestit / flagception-bundle

Feature flags on steroids!
MIT License
210 stars 42 forks source link

Support PHP8 Attributes #97

Open tacman opened 2 years ago

tacman commented 2 years ago

All the cool kids are using attributes instead of annotations...

I'll submit a PR in a bit, so we can do:

    #[Feature(name: "abc")]
    #[Route('/demo', name: 'app_demo')]
    public function demo(): Response
    {
        return $this->render('app/index.html.twig', [
        ]);
    }