Skip to content

Instantly share code, notes, and snippets.

View ricardov03's full-sized avatar
:octocat:
Building my future one commit at a time.

Ricardo A. Vargas R. ricardov03

:octocat:
Building my future one commit at a time.
View GitHub Profile
<?php
function memoize($target) {
static $memo = new WeakMap;
return new class ($target, $memo) {
function __construct(
protected $target,
protected &$memo,
) {}