<?php
namespace ConcreteCoreFoundationService;
use ConcreteCoreApplicationApplication;
use Closure;
/**
* Extending this class allows groups of services to be registered at once.
*/
abstract class Provider
{
public function __construct(Application $app)
{
$this->app = $app;
}
/**
* Registers the services provided by this provider.
* @return void
*/
abstract public function register();
}