hail/safe-storage

Store data safely in memory at runtime

Installs: 23

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/hail/safe-storage

v1.0.2 2019-05-05 07:34 UTC

This package is auto-updated.

Last update: 2025-09-16 15:26:37 UTC


README

Store data safely in memory at runtime

Example

use Hail\SafeStorage\SafeStorageTrait;

class Example
{
    use SafeStorageTrait;
    
    public function __construct(string $password)
    {
        $this->setPassword($password);
    }
    
    public function usePassword()
    {
        $password = $this->getPassword();
    }
}