proxitok/app/Constants/CacheMethods.php

9 lines
141 B
PHP
Raw Permalink Normal View History

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