Skip to content
Snippets Groups Projects
Commit ca2dbcb6 authored by Tim van Dijen's avatar Tim van Dijen
Browse files

PHPdoc

parent c5ba48b9
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ abstract class Store implements Utils\ClearableState ...@@ -16,7 +16,7 @@ abstract class Store implements Utils\ClearableState
* *
* This is false if the data store isn't enabled, and null if we haven't attempted to initialize it. * This is false if the data store isn't enabled, and null if we haven't attempted to initialize it.
* *
* @var \SimpleSAML\Store|false|null * @var \SimpleSAML\Store|bool|null
*/ */
private static $instance; private static $instance;
......
...@@ -348,7 +348,7 @@ class Database extends \SimpleSAML\Module\consent\Store ...@@ -348,7 +348,7 @@ class Database extends \SimpleSAML\Module\consent\Store
* @param string $statement The statement which should be executed. * @param string $statement The statement which should be executed.
* @param array $parameters Parameters for the statement. * @param array $parameters Parameters for the statement.
* *
* @return \PDOStatement|false The statement, or false if execution failed. * @return \PDOStatement|bool The statement, or false if execution failed.
*/ */
private function execute($statement, $parameters) private function execute($statement, $parameters)
{ {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/** /**
* Hook to add the consentAdmin module to the config page. * Hook to add the consentAdmin module to the config page.
* *
* @param \SimpleSAML\XHTML\Template The template that we should alter in this hook. * @param \SimpleSAML\XHTML\Template $template The template that we should alter in this hook.
*/ */
function consentAdmin_hook_configpage(\SimpleSAML\XHTML\Template &$template) function consentAdmin_hook_configpage(\SimpleSAML\XHTML\Template &$template)
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/** /**
* Hook to add the sanitycheck link to the config page. * Hook to add the sanitycheck link to the config page.
* *
* @param \SimpleSAML\XHTML\Template The template that we should alter in this hook. * @param \SimpleSAML\XHTML\Template $template The template that we should alter in this hook.
*/ */
function sanitycheck_hook_configpage(\SimpleSAML\XHTML\Template &$template) function sanitycheck_hook_configpage(\SimpleSAML\XHTML\Template &$template)
{ {
......
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