hepplerdotnet/arrayaccess

Trait to implement ArrayAccess

Installs: 791

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/hepplerdotnet/arrayaccess

1.0 2017-09-08 11:28 UTC

This package is auto-updated.

Last update: 2025-10-26 05:43:29 UTC


README

PHP Trait to implement ArrayAccess

Installation

First, pull in the package through Composer.

Run composer require hepplerdotnet/arrayaccess

And then include the Trait within your Class to implement ArrayAccess.

class Foo implements \ArrayAccess
{
use \HepplerDotNet\ArrayAccess\ArrayAccess;
...
}

That's it, your Class can now use ArrayAccess.