for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace garethp\ews;
use garethp\ews\API\ClassMap;
class NotificationAPI
{
public static function handlePullNotification($uri, callable $handle, array $options = array())
$options
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$server = new \SoapServer(
__DIR__ . '/../Resources/wsdl/notification-service.wsdl',
[
'uri' => $uri,
'classmap' => ClassMap::getClassMap(),
]
);
$server->setObject(new NotificationHandler($handle));
$server->handle();
return $server;
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.