Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
34 | interface SeederFactory |
||
|
|||
35 | { |
||
36 | /** |
||
37 | * create |
||
38 | * |
||
39 | * @param string $name |
||
40 | * @param int $limit |
||
41 | * @return SeedCollection |
||
42 | */ |
||
43 | public function create($name, $limit = 1); |
||
44 | |||
45 | /** |
||
46 | * @param $name |
||
47 | * @param int $limit |
||
48 | * @return mixed |
||
49 | */ |
||
50 | public function make($name, $limit = 1); |
||
51 | } |
||
52 |
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.