File "SymfonyCache.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/botman/botman/src/Cache/SymfonyCache.php
File size: 297 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace BotMan\BotMan\Cache;

use Symfony\Component\Cache\Adapter\AdapterInterface;

class SymfonyCache extends Psr6Cache
{
    /**
     * @param AdapterInterface $adapter
     */
    public function __construct(AdapterInterface $adapter)
    {
        $this->adapter = $adapter;
    }
}