Bu modele bağlıdır. O sınıfın nesneleri tam olarak bir şeyi temsil ederse, çoğul kullanmak, onlar birçok şeyi temsil ise, tekil kullanın (ama genellikle böyle bir sınıf gerekmez, bir dizi / bir koleksiyon kullanın). Her ikisi de olamaz ya (1) yeniden gerekir.
Ben Konu örneği kullanacağız:
Her nesne modelleri bir diş, sınıf "Konu" olarak adlandırırsanız. Bir kerede bu modeller çeşitli konuları ise, "Konular" (ya da "ThreadCollection" veya benzeri) diyoruz.
(1) If you need both, a representation of a single thread and a representation of many threads at once, use two distinct classes (Thread and Threads) or create an array or a collection for the latter. Then you'll have it clean:
$thread->show();
$threads->list();