Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.12 KB

README.md

File metadata and controls

34 lines (23 loc) · 1.12 KB

Shared utilities for lucid/* packages

Author Source Code Software License

Build Status Code Coverage HHVM

Requirements

php >= 5.6

Installation

$ composer require lucid/common

Data Structs

Items

The Items class implements a ListInterface and is modeled after pythons list.

<?php

use Lucid\Common\Struct\Items;

$list = new Items('foo', 'bar', ...);