1 | <?php |
||
14 | class AppController extends Controller |
||
|
|||
15 | { |
||
16 | private $_em; |
||
17 | |||
18 | 2 | public function setContainer(ContainerInterface $container = null) |
|
23 | |||
24 | /** |
||
25 | * @Route("") |
||
26 | * @Template("::base_angular.html.twig") |
||
27 | */ |
||
28 | 2 | public function indexAction() |
|
32 | |||
33 | /** |
||
34 | * @Route("/profile/reset-api-key") |
||
35 | */ |
||
36 | public function resetApiKeyAction() |
||
43 | } |
||
44 |
This check marks property names that have not been written in camelCase.
In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes
databaseConnectionString
.