Issues (13)

php-src/Sources/PDO/PDO.php (2 issues)

Severity
1
<?php
2
3
namespace kalanis\nested_tree\Sources\PDO;
4
5
use kalanis\nested_tree\Sources\SourceInterface;
6
use kalanis\nested_tree\Support;
7
use PDO as base;
8
9
abstract class PDO implements SourceInterface
10
{
11
    use Support\ColumnsTrait;
0 ignored issues
show
The trait kalanis\nested_tree\Support\ColumnsTrait requires some properties which are not provided by kalanis\nested_tree\Sources\PDO\PDO: $parentIdColumnName, $positionColumnName, $levelColumnName, $rightColumnName, $skipIfEmpty, $leftColumnName, $skipAlways, $idColumnName
Loading history...
12
    use Support\RowsTrait;
0 ignored issues
show
The trait kalanis\nested_tree\Support\RowsTrait requires some properties which are not provided by kalanis\nested_tree\Sources\PDO\PDO: $parentIdColumnName, $positionColumnName, $levelColumnName, $rightColumnName, $leftColumnName, $rootIsNull, $idColumnName
Loading history...
13
14 122
    public function __construct(
15
        protected readonly base $pdo,
16
        protected readonly Support\Node $nodeBase,
17
        protected readonly Support\TableSettings $settings,
18
    ) {
19 122
    }
20
}
21