add Memory::flush method

This commit is contained in:
yggverse 2024-04-15 18:29:44 +03:00
parent 3123bd14c3
commit 0e64ab08ff

View File

@ -25,4 +25,9 @@ class Memory
return null;
}
public function flush(): void
{
$this->_memory = [];
}
}