X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fimport%2FImportStringSource.php;h=b75ea1a192399b96b4d646a0574ec2522455e7de;hb=2aed14b6867314ef9f08d09cc2dc502f7dddb050;hp=85983b1a11eb52848c33e40edd60837900a9c344;hpb=6a325346460c6de5b8edf315117cab92fc51b11b;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/import/ImportStringSource.php b/includes/import/ImportStringSource.php index 85983b1a11..b75ea1a192 100644 --- a/includes/import/ImportStringSource.php +++ b/includes/import/ImportStringSource.php @@ -32,6 +32,15 @@ * @ingroup SpecialPage */ class ImportStringSource implements ImportSource { + /** @var string */ + private $mString; + + /** @var bool */ + private $mRead; + + /** + * @param string $string + */ function __construct( $string ) { $this->mString = $string; $this->mRead = false;