for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of dispositif/wikibot application
* 2019 © Philippe M. <[email protected]>
* For the full copyright and MIT license information, please view the LICENSE file.
*/
declare(strict_types=1);
namespace App\Infrastructure;
class PageList implements PageListInterface
{
protected $titles;
* PageList constructor.
*
* @param $titles
public function __construct(array $titles) { $this->titles = $titles; }
public function getPageTitles(): array
return $this->titles;
}