SQL
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 13
Bugs 1 Features 0
Metric Value
wmc 0
eloc 1
c 13
b 1
f 0
dl 0
loc 2
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