maike / iterable
An abstract class that gives you the power of making your class iterable
1.1.0
2020-09-02 16:35 UTC
Requires
- php: >=7.4
Requires (Dev)
- phpunit/phpunit: ^9.3
This package is auto-updated.
Last update: 2025-03-05 23:15:58 UTC
README
In other languages, like Java, you can use Collections that allows only one type. In TypeScript, for example we can do the following:
public getItems(): Array<Items> { return this.items; }
Unfortunatelly, PHP doesn't have this kind of thing, that's why I created this abstract class
Installing
This package is installed via composer:
composer require maike/iterable
Usage
In order to achieve a Collection that allows only one type in PHP, we have to create a class. In the following example, I'm creating a Collection Class extending the Iterable\Iterator
abstract class
Creating a Collection Class
use Iterable\Iterator; class DateTimeCollection extends Iterator { public function __construct(\DateTime ...$items) { parent::__construct($items); } }
With the above code we achieved two things:
- We have a collection that only allows
DateTime
Objects. - We can iterate over our Collection as we do in an array. See the following example:
$datesCollection = new DateTimeCollection( new \DateTime, new \DateTime, new \DateTime, ); foreach ($datesCollection as $key => $date) { // Do whatever you want }
Contributing
Run build
make build
Run tests
make tests