Tüm Ön Sınıflar Singleton kullanmak gerekir?

0 Cevap php

Consider Martin Fowler's Patterns Of Enterprise Application Architecture, and the pattern of Front Controller: http://martinfowler.com/eaaCatalog/frontController.html Apparently, it uses the singleton pattern. Well, I have a package of classes in php application that work together (like Zend's Controller Package) and there is one class that makes them all usable and since it resembles much of Front Controller's concepts, I named it PackageName_Front. But it shouldn't be a singleton class (as opposed to Front Controller), so do I still let it have the name Front? If not, what do I name it? Since it's a quite big package, I just need it to follow conventions as much as possible (not in a dogmatic way!) so it would be readable to other developers.

Daha çok bilgi: Bu denetleyicileri ile ilgili bir şey değil. Bu Zend_Form gibi çalışır (bir nesneye Zend_Form_Element_X ve Zend_Validate gibi tüm diğer nesnelerin kullanımını pekiştirir olan) Ama ben sadece bunu Paketadı isim değil sadece bir obje. Bu PackageName_Something olmak zorundadır, ve ben sadece bir şey ne olmalı BOĞA değilim. O bütün Paketinde rolü hakkında belki "Handler"? ... Ben istiyorum sadece birisi adı okuduğunda emin olun, karışık almaz :)

0 Cevap