X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Ffilerepo%2FForeignDBViaLBRepo.php;h=18f8d5df1cc4e733238f02c3a96bc6a5bc3a8849;hb=abd5daddfefb0ec89e3308be3ac21f439c2e914f;hp=a002aad60efec6cb7016bac4dcdd529f2f9f4f20;hpb=9f66447e0aac4f72a7cdcac9ab25ded25aeb8d4e;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/filerepo/ForeignDBViaLBRepo.php b/includes/filerepo/ForeignDBViaLBRepo.php index a002aad60e..18f8d5df1c 100644 --- a/includes/filerepo/ForeignDBViaLBRepo.php +++ b/includes/filerepo/ForeignDBViaLBRepo.php @@ -27,12 +27,23 @@ * @ingroup FileRepo */ class ForeignDBViaLBRepo extends LocalRepo { - var $wiki, $dbName, $tablePrefix; - var $fileFactory = array( 'ForeignDBFile', 'newFromTitle' ); - var $fileFromRowFactory = array( 'ForeignDBFile', 'newFromRow' ); + /** @var string */ + protected $wiki; + + /** @var string */ + protected $dbName; + + /** @var string */ + protected $tablePrefix; + + /** @var array */ + protected $fileFactory = array( 'ForeignDBFile', 'newFromTitle' ); + + /** @var array */ + protected $fileFromRowFactory = array( 'ForeignDBFile', 'newFromRow' ); /** - * @param $info array|null + * @param array|null $info */ function __construct( $info ) { parent::__construct( $info );