Issues (16)

src/Model/HasKeyCounters.php (1 issue)

Labels
Severity
1
<?php
2
3
/*
4
 * The MIT License (MIT)
5
 *
6
 * Copyright (c) 2018 Spomky-Labs
7
 *
8
 * This software may be modified and distributed under the terms
9
 * of the MIT license.  See the LICENSE file for details.
10
 */
11
12
namespace U2FAuthentication\Bundle\Model;
13
14
use U2FAuthentication\KeyHandle;
0 ignored issues
show
The type U2FAuthentication\KeyHandle was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
15
16
interface HasKeyCounters
17
{
18
    /**
19
     * @param KeyHandle $key
20
     *
21
     * @return int|null
22
     */
23
    public function getCounterForKey(KeyHandle $key): ?int;
24
}
25