Merge "Add some translations for Western Punjabi (pnb)"
[lhc/web/wiklou.git] / includes / filerepo / NullRepo.php
index 29e4cad..1c12e02 100644 (file)
  * @ingroup FileRepo
  */
 class NullRepo extends FileRepo {
-
        /**
-        * @param $info array|null
+        * @param array|null $info
         */
        function __construct( $info ) {
        }
 
        protected function assertWritableRepo() {
-               throw new MWException( get_class( $this ) . ': write operations are not supported.' );
+               throw new MWException( static::class . ': write operations are not supported.' );
        }
 }