Skip to content
Snippets Groups Projects
Commit 1b007449 authored by Demian Katz's avatar Demian Katz Committed by Robert Lange
Browse files

Resolved unused parameter warnings.

parent edb61ffd
No related merge requests found
......@@ -835,6 +835,8 @@ class Folio extends AbstractAPI implements
*
* @return array An array of associative arrays with locationID and
* locationDisplay keys
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function getPickupLocations($patron)
{
......
......@@ -62,6 +62,9 @@ class CspHeaderGeneratorFactory implements FactoryInterface
public function __invoke(ContainerInterface $container, $requestedName,
array $options = null
) {
if (!empty($options)) {
throw new \Exception('Unexpected options passed to factory.');
}
$config = $container->get(\VuFind\Config\PluginManager::class)
->get('contentsecuritypolicy');
$nonceGenerator = $container->get(NonceGenerator::class);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment