Merge "Log entries can be rendered with parentheses in HTML"
[lhc/web/wiklou.git] / includes / import / ImportStreamSource.php
index e6936cb..81e414e 100644 (file)
@@ -30,6 +30,12 @@ use MediaWiki\MediaWikiServices;
  * @ingroup SpecialPage
  */
 class ImportStreamSource implements ImportSource {
+       /** @var resource */
+       private $mHandle;
+
+       /**
+        * @param resource $handle
+        */
        function __construct( $handle ) {
                $this->mHandle = $handle;
        }