Fixed Job constructor IDE notices about variable types
[lhc/web/wiklou.git] / includes / jobqueue / jobs / ThumbnailRenderJob.php
index ab38138..a58fa8b 100644 (file)
@@ -27,7 +27,7 @@
  * @ingroup JobQueue
  */
 class ThumbnailRenderJob extends Job {
-       public function __construct( $title, $params ) {
+       public function __construct( Title $title, array $params ) {
                parent::__construct( 'ThumbnailRender', $title, $params );
        }