Merge "Use correct progressive color on inputs"
[lhc/web/wiklou.git] / includes / api / ApiFormatRaw.php
index 45003e9..3f5c8b7 100644 (file)
 class ApiFormatRaw extends ApiFormatBase {
 
        /**
-        * Constructor
-        * @param $main ApiMain object
-        * @param $errorFallback ApiFormatBase object to fall back on for errors
+        * @param ApiMain $main
+        * @param ApiFormatBase $errorFallback Object to fall back on for errors
         */
-       public function __construct( $main, $errorFallback ) {
+       public function __construct( ApiMain $main, ApiFormatBase $errorFallback ) {
                parent::__construct( $main, 'raw' );
                $this->mErrorFallback = $errorFallback;
        }