proxitok/app/Constants/CacheMethods.php

9 lines
141 B
PHP
Raw Normal View History

<?php
namespace App\Constants;
2022-11-04 15:08:19 -04:00
abstract class CacheMethods {
const JSON = 'json';
2023-01-25 09:56:23 -05:00
const APCU = 'apcu';
const REDIS = 'redis';
}