1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

Define storeArticleHeaders false by default

Fix tests which must use `$storeArticleHeaders`.
Fix CS
This commit is contained in:
Jeremy Benoist 2017-11-21 10:37:36 +01:00
parent 8a21985474
commit 709e21a3f4
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
4 changed files with 18 additions and 17 deletions

View file

@ -26,7 +26,7 @@ class ContentProxy
protected $eventDispatcher;
protected $storeArticleHeaders;
public function __construct(Graby $graby, RuleBasedTagger $tagger, ValidatorInterface $validator, LoggerInterface $logger, $fetchingErrorMessage, $storeArticleHeaders)
public function __construct(Graby $graby, RuleBasedTagger $tagger, ValidatorInterface $validator, LoggerInterface $logger, $fetchingErrorMessage, $storeArticleHeaders = false)
{
$this->graby = $graby;
$this->tagger = $tagger;