Skip to content

Instantly share code, notes, and snippets.

@renatofrota
renatofrota / Remember.php
Created September 9, 2024 12:43
Remember: a simple Laravel / PHP volatile runtime cache
<?php
// save this file as ./app/Helpers/Remember.php
namespace App\Helpers {
class Remember
{
public static array $that = [];
}