A simple php bag for storing data

1.0.0 2022-05-01 10:47 UTC

This package is auto-updated.

Last update: 2024-05-29 05:27:00 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;