|  Download <p align="center">
<img src="https://i.ibb.co/vq97y2t/laravel-manager.jpg" width="300">
</p> <p align="center">
<a href="https://travis-ci.org/DeGraciaMathieu/manager"><img src="https://travis-ci.org/DeGraciaMathieu/manager.svg?branch=master" alt="Build Status"></a>
<a href="https://scrutinizer-ci.com/g/DeGraciaMathieu/manager/?branch=master"><img src="https://scrutinizer-ci.com/g/DeGraciaMathieu/manager/badges/coverage.png?b=master" alt="Code Coverage"></a>
<a href="https://packagist.org/packages/degraciamathieu/manager"><img src="https://img.shields.io/packagist/v/degraciamathieu/manager.svg?style=flat-square" alt="Latest Version on Packagist"></a>
<a href='https://packagist.org/packages/degraciamathieu/manager'><img src='https://img.shields.io/packagist/dt/degraciamathieu/manager.svg?style=flat-square' /></a> 
</p> DeGraciaMathieu/ManagerImplementation of the Manager pattern existing in Laravel framework. Installationcomposer require degraciamathieu/manager
 UsageThis package offers an abstract class Managerwhich needs to be extended to implement the creation of various Driver classes. use DeGraciaMathieu/Manager/Manager;
class LoggerManager extends Manager {
    public function createMonologDriver(): LoggerDriver
    {
        return new MonologDriver();
    }
    public function createMockDriver(): LoggerDriver
    {
        return new MockDriver();
    }
    public function getDefaultDriver()
    {
        return 'monolog';
    }
}
 The getDefaultDrivermethod should also be implemented in your classManager, in order to determine which driver has to be created by default. It's also the right spot to determine the default driver from an environment variable, or a configuration. public function getDefaultDriver()
{
    return env('MANAGER_LOGGER_DEFAULT_DRIVER');
}
 In a matter of consistency, all Driver creations (createClientDriver,createMockDriver...) should return a class which itself implements the same interface, the LoggerDriver contract in this here case. interface LoggerDriver {
    public function doAnything();
}
class MonologDriver implements LoggerDriver {
    public function doAnything()
    {
        echo 'i do anything from the monolog driver';
    }
}
class MockDriver implements LoggerDriver {
    public function doAnything()
    {
        echo 'i do anything from the mock driver';
    }
}
 From now on, it's possible to use your Manager, either by using the default driver: (new LoggerManager())->doAnything(); // i do anything from the monolog driver
 Or by simply specify the driver which needs to be instantiated. (new LoggerManager())->driver('monolog')->doAnything(); // i do anything from the monolog driver
(new LoggerManager())->driver('mock')->doAnything(); // i do anything from the mock driver
 Example with Laravel:Usage example of the pattern manager in a Laravel project. |