2017 © Pedro Peláez
 

library collection

A simple PHP based collection.

image

mundanity/collection

A simple PHP based collection.

  • Wednesday, February 7, 2018
  • by mundanity
  • Repository
  • 0 Watchers
  • 0 Stars
  • 2,061 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 191 % Grown

The README.md

Build Status Scrutinizer Code Quality, (*1)

A simple PHP based collection., (*2)

Usage

For basic usage, use the provided base class of Collection or KeyedCollection. Each class has a mutable counterpart., (*3)

<?php

$collection = new Collection([1, 2, 3]);
$collection->has(2); // true

$mutable = MutableCollection::fromCollection($collection);
$mutable->remove(2);
$mutable->has(2); // false

The Versions

07/02 2018

dev-master

9999999-dev https://github.com/mundanity/collection

A simple PHP based collection.

  Sources   Download

MIT

The Requires

  • php ~5.6 || ~7.1

 

The Development Requires

07/02 2018

v1.0.0

1.0.0.0 https://github.com/mundanity/collection

A simple PHP based collection.

  Sources   Download

MIT

The Requires

  • php ~5.6 || ~7.1

 

The Development Requires