| Total Complexity | 5 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 16 | class Path extends Dsn |
||
| 17 | { |
||
| 18 | use UserPasswordTrait; |
||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | private $path; |
||
| 23 | |||
| 24 | public function __construct(string $scheme, string $path, array $parameters = [], array $authentication = []) |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getScheme(): string |
||
| 32 | { |
||
| 33 | return parent::getScheme(); |
||
|
|
|||
| 34 | } |
||
| 35 | |||
| 36 | public function getPath(): string |
||
| 37 | { |
||
| 38 | return $this->path; |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @var string |
||
| 43 | */ |
||
| 44 | public function __toString() |
||
| 53 | } |
||
| 54 | } |
||
| 55 |