1 | <?php |
||
25 | class QB |
||
|
|||
26 | { |
||
27 | /** |
||
28 | * @var ContainerInterface $container |
||
29 | */ |
||
30 | private static $container; |
||
31 | |||
32 | /** |
||
33 | * @return ContainerInterface |
||
34 | */ |
||
35 | public static function getContainer() |
||
43 | |||
44 | /** |
||
45 | * @return SelectBuilder |
||
46 | */ |
||
47 | public static function select() |
||
51 | |||
52 | /** |
||
53 | * @return UpdateBuilder |
||
54 | */ |
||
55 | public static function update() |
||
59 | |||
60 | /** |
||
61 | * @return DeleteBuilder |
||
62 | */ |
||
63 | public static function delete() |
||
67 | |||
68 | /** |
||
69 | * @return InsertBuilder |
||
70 | */ |
||
71 | public static function insert() |
||
75 | |||
76 | /** |
||
77 | * @return InsertSelectBuilder |
||
78 | */ |
||
79 | public static function insertSelect() |
||
83 | } |
This check examines a number of code elements and verifies that they conform to the given naming conventions.
You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.