Skip to content
Commits auf Quelle (5)
include:
- project: 'quiqqer/stabilization/semantic-release'
file: '/ci-templates/.gitlab-ci.yml'
PCSG QL-1.0
CC BY-NC-SA 4.0
\ No newline at end of file
......@@ -16,6 +16,6 @@ QUI::$Ajax->registerFunction(
function () {
return Handler::getList();
},
array(),
[],
'Permission::checkAdminUser'
);
......@@ -16,5 +16,5 @@ QUI::$Ajax->registerFunction(
function () {
return Handler::getDefaultCaptchaModuleControl()->create();
},
array()
[]
);
......@@ -9,5 +9,4 @@ namespace QUI\Captcha;
*/
class Exception extends \QUI\Exception
{
}
......@@ -4,6 +4,7 @@ namespace QUI\Captcha\Modules;
use QUI;
use QUI\Captcha\Modules\SimpleMath\Control;
use function mt_rand;
use function random_int;
......
......@@ -3,7 +3,7 @@
namespace QUI\Captcha\Modules\SimpleMath;
use QUI;
use QUI\Captcha\Modules\Google;
use function dirname;
/**
......@@ -17,7 +17,7 @@ class Control extends QUI\Captcha\Controls\CaptchaControl
* ControlWrapper constructor.
* @param array $attributes
*/
public function __construct(array $attributes = array())
public function __construct(array $attributes = [])
{
parent::__construct($attributes);
......