Wiggum uses dependency containers Services get attach to Controllers as properties, all services are dependency container. Wiggum uses a dependency container to prepare, manage, and inject application dependencies.

All of the service declarations for the Wiggum framework are stored in the services file usally found in app/boot/services.php.

How to use the container

You can fetch services from your controller implicitly. You can implicitly fetch services from the container like this:

<?php
 $myService = $this->myService;
?>

How do I write services?

A service is a callable that returns a object. Below is an example of adding the database service to your application.

<?php
$app->addService('db', function() {
	$config = $this->config->get('services.db');
	return new wiggum\services\db\DB($config);
});
?>

Required services

Your application MUST implement these required services:

  • router
  • exceptionHandler
  • errorHandler