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 PropertyList {
private $elements;
* @param PropertyListElement[] $propertyListElements
public function __construct( array $propertyListElements ) {
$this->elements = $propertyListElements;
}
* @return PropertyListElement[]
public function getElements() {
return $this->elements;