* @copyright 2016 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @version 5.0.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; use DateInterval; use Psr\Log\{LoggerInterface, LoggerAwareInterface}; /** * Actual implementations for Simple Cache interface, so that TypeErrors can be caught and replaced with the * PSR-specified exceptions */ abstract class AbstractTeller { use _Driver; use LoggerTrait; }