| Total Complexity | 5 |
| Total Lines | 58 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | abstract class ResourceManager |
||
| 9 | {
|
||
| 10 | /** |
||
| 11 | * @var AuthenticateProvider |
||
| 12 | */ |
||
| 13 | protected $auth; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var null|object |
||
| 17 | */ |
||
| 18 | protected $driverBuilderInstance; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * ResourceManager constructor. |
||
| 22 | * @param $auth |
||
| 23 | */ |
||
| 24 | public function __construct($auth) |
||
| 45 | } |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * get auth |
||
| 50 | * |
||
| 51 | * @return AuthenticateProvider |
||
| 52 | */ |
||
| 53 | public function getAuth() |
||
| 56 | } |
||
| 57 | |||
| 58 | /** |
||
| 59 | * get driver builder instance |
||
| 60 | * |
||
| 61 | * @return object|null |
||
| 62 | */ |
||
| 63 | public function getDriverBuilderInstance() |
||
| 66 | } |
||
| 67 | } |