for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
<?php
require __DIR__ . '/env.php';
require __DIR__ . '/vendor/autoload.php';
header('Content-type: text/plain; charset=utf-8');
use rdx\fuelly\Client;
use rdx\fuelly\WebAuth;
function getTestClient($mail, $pass, $session) {
$client = new Client(new WebAuth($mail, $pass, $session));
Client::__construct()
$input
This check looks for function calls that miss required arguments.
return $client;
}
This check looks for function calls that miss required arguments.