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