UnsupportedDriverException
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 3
Bugs 0 Features 0
Metric Value
wmc 0
c 3
b 0
f 0
lcom 0
cbo 1
dl 0
loc 3
1
<?php
2
3
namespace Vinelab\UrlShortener\Exceptions;
4
5
/**
6
 * Class UnsupportedProviderException.
7
 *
8
 * @category Exception for Unsupported Driver
9
 *
10
 * @author  Mahmoud Zalt <[email protected]>
11
 */
12
class UnsupportedDriverException extends Exception
13
{
14
}
15