for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CarbonFramework\Controllers;
use CarbonFramework\Framework;
use CarbonFramework\ServiceProviders\ServiceProviderInterface;
/**
* Provide controller dependencies
*
* @codeCoverageIgnore
*/
class ControllersServiceProvider implements ServiceProviderInterface {
* {@inheritDoc}
public function register( $container ) {
$container[ WordPress::class ] = function() {
return new WordPress();
};
}
public function boot( $container ) {
// nothing to boot