| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function getSolutions(Throwable $throwable): array |
||
| 26 | { |
||
| 27 | return [ |
||
| 28 | BaseSolution::create('Your current cache driver does not support atomic locks.') |
||
| 29 | ->setSolutionDescription('Consider switching to a cache driver to `redis`, `memcached`, or `dynamodb`.') |
||
| 30 | ->setDocumentationLinks(['Cache: Atomic Locks docs' => 'https://laravel.com/docs/7.x/cache#atomic-locks']), |
||
| 31 | ]; |
||
| 32 | } |
||
| 33 | } |
||
| 34 |