Skip to content

Commit 408bb48

Browse files
committed
fix bug (add uses classes) + phpDoc
1 parent 90dccd8 commit 408bb48

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

src/ReCaptcha.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
namespace kekaadrenalin\recaptcha3;
44

5+
use Yii;
6+
use yii\helpers\Json;
7+
8+
/**
9+
* Class ReCaptcha
10+
* @package kekaadrenalin\recaptcha3
11+
*/
512
class ReCaptcha extends \yii\base\Component
613
{
714
public $site_key = null;

src/ReCaptchaValidator.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
use yii\di\Instance;
88
use yii\validators\Validator;
99

10+
/**
11+
* Class ReCaptchaValidator
12+
* @package kekaadrenalin\recaptcha3
13+
*/
1014
class ReCaptchaValidator extends Validator
1115
{
1216
/**

src/ReCaptchaWidget.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
use yii\web\View;
1010
use yii\widgets\InputWidget;
1111

12+
/**
13+
* Class ReCaptchaWidget
14+
* @package kekaadrenalin\recaptcha3
15+
*/
1216
class ReCaptchaWidget extends InputWidget
1317
{
1418
/**

0 commit comments

Comments
 (0)