Microweber\Utils\Adapters\Cache\LaravelCache::__construct PHP Method

__construct() public method

public __construct ( $app )
    public function __construct($app)
    {
        $this->app = $app;
        $driver = $this->app['config']['cache.driver'];
        if ($driver == 'database') {
            $this->support_tags = false;
        } else {
            $this->support_tags = true;
        }
    }