Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In a (PHP) framework, what would be a good name for a "manager" class?

I'm building a PHP framework and my english is not the best. There are several classes (database abstraction, module, router,...) in my framework and there is a place where they all have to be initialized and executed together.

  • What is a good name for a "master" class that initializes and runs all other classes?
like image 495
opue Avatar asked Mar 11 '10 19:03

opue


People also ask

How do you name a class in PHP?

Class names are always written in UpperCamelCase . The unqualified class name must be meant literally even without the namespace. Class names must be nouns, never adjectives. The name of abstract classes must start with the word “Abstract”, class names of aspects must end with the word “Aspect”.

What is framework in PHP with example?

A PHP framework makes development faster. For example, you don't have to write complex queries to retrieve the data from the database. PHP frameworks provide CRUD operations (Create, Read, Update, and Delete). Frameworks enable developers to scale systems easily.


2 Answers

BuckarooBonzaiAndTheBootstrapInitiatorRoutine

like image 156
David Souther Avatar answered Oct 05 '22 23:10

David Souther


bootstrap

adding random text since it won't let me submit otherwise

like image 24
ryeguy Avatar answered Oct 05 '22 22:10

ryeguy