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