8 lines
107 B
PHP
8 lines
107 B
PHP
|
<?php
|
||
|
namespace App\Constants;
|
||
|
|
||
|
class CacheMethods {
|
||
|
const JSON = 'json';
|
||
|
const REDIS = 'redis';
|
||
|
}
|