for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace ikoene\Marvel\Entity;
/**
* Class ComicList
* @package ikoene\Marvel\Entity
*/
class ComicList extends AbstractList
{
* The list of returned issues in this collection.
*
* @var array
private $items;
* @return array
public function getItems()
return $this->items;
}
* @param array $items
public function setItems(array $items)
$this->items = $items;