SchemaManager   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 8
dl 0
loc 11
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 1 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace ArangoClient\Schema;
6
7
use ArangoClient\ArangoClient;
8
use ArangoClient\Manager;
9
10
class SchemaManager extends Manager
11
{
12
    use ManagesAnalyzers;
0 ignored issues
show
introduced by
The trait ArangoClient\Schema\ManagesAnalyzers requires some properties which are not provided by ArangoClient\Schema\SchemaManager: $name, $result
Loading history...
13
    use ManagesCollections;
0 ignored issues
show
introduced by
The trait ArangoClient\Schema\ManagesCollections requires some properties which are not provided by ArangoClient\Schema\SchemaManager: $result, $count, $name
Loading history...
14
    use ManagesDatabases;
0 ignored issues
show
Bug introduced by
The trait ArangoClient\Schema\ManagesDatabases requires the property $result which is not provided by ArangoClient\Schema\SchemaManager.
Loading history...
15
    use ManagesGraphs;
0 ignored issues
show
introduced by
The trait ArangoClient\Schema\ManagesGraphs requires some properties which are not provided by ArangoClient\Schema\SchemaManager: $name, $collections, $graph, $graphs
Loading history...
16
    use ManagesIndexes;
0 ignored issues
show
Bug introduced by
The trait ArangoClient\Schema\ManagesIndexes requires the property $indexes which is not provided by ArangoClient\Schema\SchemaManager.
Loading history...
17
    use ManagesUsers;
0 ignored issues
show
Bug introduced by
The trait ArangoClient\Schema\ManagesUsers requires the property $result which is not provided by ArangoClient\Schema\SchemaManager.
Loading history...
18
    use ManagesViews;
0 ignored issues
show
introduced by
The trait ArangoClient\Schema\ManagesViews requires some properties which are not provided by ArangoClient\Schema\SchemaManager: $name, $result
Loading history...
19
20
    public function __construct(protected ArangoClient $arangoClient) {}
21
}
22