if i’ve got a thread model and controller.
should that be in singular or plural for both the model and controller?
i could show a thread and also list threads.
dont know what i should use.
$thread->get_lists(); // doesnt sound good
$threads->show(); // doesnt sound good
It doesn’t matter.
I personally use singular for models and plural for controllers.
What matters, however, is that you pick a scheme and be consistent.