for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PubPeerFoundation\PublicationDataExtractor\Models;
class Updates extends Model
{
/**
* Hold cherry picked list of types.
*
* @var array
*/
protected $list = [];
* Add unknown updates to the current list.
* @param $updates
* @return array
public function add(array $updates): array
$this->list = $updates;
return $this->list;
}