<?php

// AUTOMATICALLY GENERATED.  DO NOT EDIT.
// Use `composer build` to regenerate.

namespace Wikimedia\IDLeDOM\Stub;

use Exception;

trait NavigatorID {

	// Underscore is used to avoid conflicts with DOM-reserved names
	// phpcs:disable PSR2.Methods.MethodDeclaration.Underscore
	// phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName

	/**
	 * @return Exception
	 */
	abstract protected function _unimplemented(): Exception;

	// phpcs:enable

	/**
	 * @return string
	 */
	public function getAppCodeName(): string {
		throw self::_unimplemented();
	}

	/**
	 * @return string
	 */
	public function getAppName(): string {
		throw self::_unimplemented();
	}

	/**
	 * @return string
	 */
	public function getAppVersion(): string {
		throw self::_unimplemented();
	}

	/**
	 * @return string
	 */
	public function getPlatform(): string {
		throw self::_unimplemented();
	}

	/**
	 * @return string
	 */
	public function getProduct(): string {
		throw self::_unimplemented();
	}

	/**
	 * @return string
	 */
	public function getProductSub(): string {
		throw self::_unimplemented();
	}

	/**
	 * @return string
	 */
	public function getUserAgent(): string {
		throw self::_unimplemented();
	}

	/**
	 * @return string
	 */
	public function getVendor(): string {
		throw self::_unimplemented();
	}

	/**
	 * @return string
	 */
	public function getVendorSub(): string {
		throw self::_unimplemented();
	}

	/**
	 * @return bool
	 */
	public function taintEnabled(): bool {
		throw self::_unimplemented();
	}

	/**
	 * @return string
	 */
	public function getOscpu(): string {
		throw self::_unimplemented();
	}

}
