Within (PHP), what would be a good name for the "manager" class?

I am building a PHP framework and my English is not the best. There are several classes in my structure (database abstraction, module, router, ...), and there is a place where they should all be initialized and executed together.

  • What is a good name for the "master" class, which initializes and runs all other classes?
+7
php naming-conventions
source share
16 answers

BuckarooBonzaiAndTheBootstrapInitiatorRoutine

+7
source share

self-loading

adding random text as it will not allow me to present otherwise

+5
source share

Whatever you call a framework?

+2
source share

root

adding random text as it will not allow me to present otherwise

+1
source share

You can call him a delegate.

+1
source share

What is a good name for the "master" class, which initializes and runs all other classes?

ClassFactory

+1
source share

Why not TypeYourAppNameHere ?

+1
source share
 ActiveBase 

It will be a nice name for the master class, I think

+1
source share

core

adding random text as it will not allow me to present otherwise

0
source share

Loader

adding random text as it will not allow me to present otherwise

0
source share

driver?

adding random text as it will not allow me to present otherwise

0
source share

In fact, it will be your framework.

$ Opue

will work well. Or you can add a prefix. fwOupe.

0
source share

I am using Application singleton:

 class Foo { public function bar() { $app = Application::getInstance(); $app->db->query( ... ); } } 
0
source share

I will name it main . The main C ++ function does the same in some projects - just instantiate some important classes.

0
source share

Globalfactory?

0
source share

Is this an initialization or loading procedure? So why not Boot or GlobalInitialiser or the like?

(adapt to crazy American spelling as needed;))

0
source share

All Articles