Skip to content

Commit

Permalink
Testing proxy engine with PHPDoc
Browse files Browse the repository at this point in the history
TheCartpenter committed May 16, 2024
1 parent 26cd6bf commit 2f20b77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upload/system/engine/proxy.php
Original file line number Diff line number Diff line change
@@ -49,11 +49,11 @@ public function __set(string $key, object $value): void {
* Call
*
* @param string $key
* @param array<string mixed> $args
* @param mixed $args
*
* @return mixed
*/
public function __call(string $key, array $args) {
public function __call(string $key, $args) {
$arg_data = [];

$args = func_get_args();

0 comments on commit 2f20b77

Please sign in to comment.