for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PiedWeb\SeoPocketCrawler;
class CrawlerContinue extends Crawler
{
public function __construct(string $id, bool $debug = true, ?string $dataDirectory = null)
$this->config = CrawlerConfig::loadFrom($id, $dataDirectory);
//$this->recorder = new Recorder($this->config->getDataFolder(), $this->config->getCacheMethod());
$this->debug = $debug;
$dataFromPreviousCrawl = $this->config->getDataFromPreviousCrawl();
foreach ($dataFromPreviousCrawl as $k => $v) {
$this->$k = $v;
}