| Total Complexity | 7 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class UserFactory |
||
| 6 | { |
||
| 7 | protected $config; |
||
| 8 | protected static $user_callback; |
||
| 9 | |||
| 10 | public function __construct() |
||
| 11 | { |
||
| 12 | $this->config = config('enterpriseauth'); |
||
| 13 | } |
||
| 14 | |||
| 15 | public function convertAzureUser($azure_user) |
||
| 38 | } |
||
| 39 | |||
| 40 | public static function userCallback($callback) |
||
| 47 | } |
||
| 48 | } |
||
| 49 |