uawdijnntqw1x1x1
IP : 216.73.216.54
Hostname : neogeopocket.gameplayer.club
Kernel : Linux neogeopocket.gameplayer.club 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
var
/
www
/
html
/
1c732
/
..
/
mediawiki
/
languages
/
..
/
includes
/
objectcache
/
..
/
content
/
ValidationParams.php
/
/
<?php namespace MediaWiki\Content; use MediaWiki\Page\PageIdentity; /** * @since 1.38 * An object to hold validation params. */ class ValidationParams { /** @var PageIdentity */ private $pageIdentity; /** @var int */ private $flags; /** @var int */ private $parentRevId; public function __construct( PageIdentity $pageIdentity, int $flags, int $parentRevId = -1 ) { $this->pageIdentity = $pageIdentity; $this->flags = $flags; $this->parentRevId = $parentRevId; } /** * * @return PageIdentity */ public function getPageIdentity(): PageIdentity { return $this->pageIdentity; } /** * * @return int */ public function getFlags(): int { return $this->flags; } /** * @deprecated since 1.38. Born soft-deprecated as we will move usage of it * to MultiContentSaveHook in ProofreadPage (only one place of usage). * * @return int */ public function getParentRevisionId(): int { return $this->parentRevId; } }
/var/www/html/1c732/../mediawiki/languages/../includes/objectcache/../content/ValidationParams.php