forked from wallabag/wallabag
Modernize to PHP 7.4
This commit is contained in:
@ -95,9 +95,7 @@ class PocketHtmlImportTest extends TestCase
|
||||
$this->em
|
||||
->expects($this->any())
|
||||
->method('persist')
|
||||
->with($this->callback(function ($persistedEntry) {
|
||||
return (bool) $persistedEntry->isArchived();
|
||||
}));
|
||||
->with($this->callback(fn ($persistedEntry) => (bool) $persistedEntry->isArchived()));
|
||||
|
||||
$res = $pocketHtmlImport
|
||||
->setMarkAsRead(true)
|
||||
|
||||
Reference in New Issue
Block a user