A simple php bag for storing data

1.0.0 2022-05-01 10:47 UTC

This package is auto-updated.

Last update: 2025-06-29 02:08:04 UTC


README

A simple php parameter bag

Usage

<?php

require_once './vendor/autoload.php';

$bag = new \MamadouAlySy\ParameterBag();

$bag->add('name', 'Mamadou');
$bag->has('name') // return true
count($bag) // return 1;