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
.
You can fetch services from your controller implicitly. You can implicitly fetch services from the container like this:
<?php
$myService = $this->myService;
?>
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);
});
?>
Your application MUST implement these required services: