From: Thiemo Kreuz Date: Wed, 2 Jan 2019 14:25:44 +0000 (+0100) Subject: Add missing property declarations to LocalFileTest X-Git-Tag: 1.34.0-rc.0~3166^2 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmes_infos.php?a=commitdiff_plain;h=c0e27fba86092f85c11e5e734a3812c295d758d0;p=lhc%2Fweb%2Fwiklou.git Add missing property declarations to LocalFileTest Change-Id: I518a7a939042110f7ca67b0697e35e2e35105a08 --- diff --git a/tests/phpunit/includes/filerepo/file/LocalFileTest.php b/tests/phpunit/includes/filerepo/file/LocalFileTest.php index e25e6064db..7acd237203 100644 --- a/tests/phpunit/includes/filerepo/file/LocalFileTest.php +++ b/tests/phpunit/includes/filerepo/file/LocalFileTest.php @@ -7,6 +7,19 @@ class LocalFileTest extends MediaWikiTestCase { + /** @var LocalRepo */ + private $repo_hl0; + /** @var LocalRepo */ + private $repo_hl2; + /** @var LocalRepo */ + private $repo_lc; + /** @var File */ + private $file_hl0; + /** @var File */ + private $file_hl2; + /** @var File */ + private $file_lc; + protected function setUp() { parent::setUp();