Skip to content
Snippets Groups Projects
Commit 55d675c9 authored by Gerrit Uitslag's avatar Gerrit Uitslag
Browse files

add phpdocs

parent 922cfa6a
No related branches found
No related tags found
No related merge requests found
......@@ -103,9 +103,11 @@ class helper_plugin_authplain_escaping_test extends DokuWikiTest {
$this->assertEquals($escaped, $result[2]);
}
}
}
/**
* Class auth_plugin_authplainharness
*/
class auth_plugin_authplainharness extends auth_plugin_authplain {
/**
......@@ -115,12 +117,16 @@ class auth_plugin_authplainharness extends auth_plugin_authplain {
$this->_pregsplit_safe = $bool;
}
/**
* @return bool|mixed
*/
public function getPregsplit_safe(){
return $this->_pregsplit_safe;
}
/**
* @param string $line
* @return array
*/
public function splitUserData($line){
return $this->_splitUserData($line);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment