Is this a problem / bad practice:
I have the same method names in both Model and Controller. For example:
In the Director Model:
function approve($company_id, $director_id){....}
In the DirectorsController:
function approve($id = null){...}
The reason to have these are for clarity (I know it looks confusing instead, but for this particular application, this makes it much clearer.)
Currently it is working, but I am not sure if this is fine.
Thank you for any input.
$this->Model->method()and$this->method()by mistake, but it shouldn't pose any technical problems.