mediawiki-extensions-Confir.../includes/store/CaptchaHashStore.php
Reedy d648372f7f Fix MediaWiki.Commenting.FunctionComment.MissingDocumentationPublic
Change-Id: Idc03460327095e19438fd9a3a542bf4229db4be2
2020-04-15 00:45:00 +01:00

38 lines
557 B
PHP

<?php
class CaptchaHashStore extends CaptchaStore {
protected $data = [];
/**
* @inheritDoc
*/
public function store( $index, $info ) {
$this->data[$index] = $info;
}
/**
* @inheritDoc
*/
public function retrieve( $index ) {
if ( array_key_exists( $index, $this->data ) ) {
return $this->data[$index];
}
return false;
}
/**
* @inheritDoc
*/
public function clear( $index ) {
unset( $this->data[$index] );
}
public function cookiesNeeded() {
return false;
}
public function clearAll() {
$this->data = [];
}
}