endeavour/php-ds-extensions

Installs: 2 809

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/endeavour/php-ds-extensions

0.0.6 2023-06-21 12:38 UTC

This package is auto-updated.

Last update: 2025-10-21 17:52:00 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);
    }
}