Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
35 | interface Seeder |
||
|
|||
36 | { |
||
37 | /** |
||
38 | * setConnection |
||
39 | * |
||
40 | * @param Connection $connection |
||
41 | * @return void |
||
42 | */ |
||
43 | public function setConnection(Connection $connection); |
||
44 | |||
45 | /** |
||
46 | * Runs the Seeder process. |
||
47 | * |
||
48 | * @return void |
||
49 | */ |
||
50 | public function run(); |
||
51 | |||
52 | /** |
||
53 | * seed |
||
54 | * |
||
55 | * @throws Connection\NotFoundException |
||
56 | * @return bool |
||
57 | */ |
||
58 | public function seed(); |
||
59 | |||
60 | /** |
||
61 | * @return string |
||
62 | */ |
||
63 | public function getClass(); |
||
64 | } |
||
65 |
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.