Skip to content

Commit cdd7212

Browse files
committed
fix: Ajax action fix
1 parent 5aa2090 commit cdd7212

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

src/Decorators/Ajax_Action.php

-8
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,6 @@ class Ajax_Action extends Action {
3939
*/
4040
protected string $prefix;
4141

42-
/**
43-
* Ajax method.
44-
*
45-
* @var 'GET'|'POST'|'REQ'
46-
*/
47-
protected string $method;
48-
4942
/**
5043
* Nonce query var.
5144
*
@@ -109,7 +102,6 @@ public function __construct(
109102
) {
110103
$this->action = $action;
111104
$this->prefix = $prefix;
112-
$this->method = $method;
113105
$this->nonce = $nonce;
114106
$this->cap = $cap;
115107
$this->vars = $vars;

src/Interfaces/Can_Invoke.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
* @property-read int $fired Number of times the hook has fired.
2020
* @property-read string $method The method name.
2121
*
22-
* @property-read array{TInst,string} $target The target method.
23-
* @property-read THndl $handler The handler instance.
22+
* @property-read array{0:TInst,1:string} $target The target method.
23+
* @property-read THndl $handler The handler instance.
2424
*/
2525
interface Can_Invoke extends Can_Hook {
2626
/**

0 commit comments

Comments
 (0)