Issues (2)

src/Auth/Source/SQL.php (1 issue)

1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\Module\sqlauth\Auth\Source;
6
7
/**
8
 * @deprecated Use the SQL2 class and the new SQL2 configuration format instead.
9
 *
10
 * @package SimpleSAMLphp
11
 */
12
13
class SQL extends SQL1Compat
0 ignored issues
show
Deprecated Code introduced by
The class SimpleSAML\Module\sqlauth\Auth\Source\SQL1Compat has been deprecated: Use the SQL2 class and the new SQL2 configuration format instead. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

13
class SQL extends /** @scrutinizer ignore-deprecated */ SQL1Compat
Loading history...
14
{
15
}
16