for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Queryr\Resources;
/**
* @licence GNU GPL v2+
* @author Jeroen De Dauw < [email protected] >
*/
class ItemList {
private $elements;
* @param ItemListElement[] $itemListElements
public function __construct( array $itemListElements ) {
$this->elements = $itemListElements;
}
* @return ItemListElement[]
public function getElements() {
return $this->elements;