1 | <?php |
||
34 | class ProductAction extends AbstractAction |
||
35 | { |
||
36 | |||
37 | /** |
||
38 | * Creates's the entity with the passed attributes. |
||
39 | * |
||
40 | * @param array $row The attributes of the entity to create |
||
41 | * @param string|null $name The name of the prepared statement that has to be executed |
||
42 | * |
||
43 | * @return string The last inserted ID |
||
44 | */ |
||
45 | 1 | public function create($row, $name = null) |
|
49 | |||
50 | /** |
||
51 | * Update's the entity with the passed attributes. |
||
52 | * |
||
53 | * @param array $row The attributes of the entity to update |
||
54 | * @param string|null $name The name of the prepared statement that has to be executed |
||
55 | * |
||
56 | * @return string The ID of the updated product |
||
57 | */ |
||
58 | public function update($row, $name = null) |
||
62 | } |
||
63 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.