📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: RequestBodyCreatorTrait.php
<?php namespace App\Traits; use App\Service\NcGatewayApi\Caller; trait RequestBodyCreatorTrait { /** * Create request for API protocol * * @param string $method * @param array $parameters * * @return array */ private function createRequest(string $method, array $parameters = []): array { return [ 'version' => Caller::PROTOCOL_VERSION, 'method' => $method, 'params' => $parameters, 'auth' => $this->getRequestAuthParameter(), ]; } /** * @return string[] */ private function getRequestAuthParameter(): array { return []; } }
Save