Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | public function __construct() { |
||
8 | $this->connection["enable"] = false; |
||
9 | $this->connection["user"] = ""; |
||
10 | $this->connection["password"] = ""; |
||
11 | $this->connection["database"] = ""; |
||
12 | $this->connection["server"] = ""; |
||
13 | $this->all = ""; |
||
14 | $this->DEBUG = 0; |
||
15 | $this->pages = []; |
||
16 | } |
||
17 | public function import( $_path, $_type = "misc" ) { |
||
48 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.