endeavour/php-ds-extensions

0.0.6 2023-06-21 12:38 UTC

This package is auto-updated.

Last update: 2024-09-21 15:16:57 UTC


README

This is a small extension library which will allow you to create strong typed php datastructures as well as typing it's contents.

Usage

use \Ds\Set;

class MySet {

    use \Endeavour\DsExtensions\SetTrait;
    
    public function __construct(MyObjectType ... $object) {
        $this->set = new Set($object);
    }
}