Skip to content

Instantly share code, notes, and snippets.

@BackEndTea
Created May 18, 2021 04:52
Show Gist options
  • Save BackEndTea/2164ef89fc31125d735f2f6c49243f55 to your computer and use it in GitHub Desktop.
Save BackEndTea/2164ef89fc31125d735f2f6c49243f55 to your computer and use it in GitHub Desktop.
<?php
// OPTION A:
class MyController
{
//constructor, properties etc
/**
* @Route("/my/path")
*/
public function __invoke(): Response;
}
// OPTION B:
/**
* @Route("/my/path")
*/
class MyController
{
//constructor, properties etc
public function __invoke(): Response;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment