Viewing File: /home/omtekel/www/wp-content/upgrade/backup/Thanks.tar

includes/Storage/Exceptions/InvalidLogType.php000066600000000507151335001370015506 0ustar00<?php

namespace MediaWiki\Extension\Thanks\Storage\Exceptions;

use Exception;

class InvalidLogType extends Exception {
	private string $logType;

	public function __construct( string $logType ) {
		parent::__construct();
		$this->logType = $logType;
	}

	public function getLogType(): string {
		return $this->logType;
	}
}
Back to Directory File Manager