| Conditions | 3 |
| Paths | 4 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 53 | protected static function parseIdentifier($identifier) |
||
| 54 | { |
||
| 55 | if (strpos($identifier, static::class)) { |
||
| 56 | $identifier = static::class . $identifier; |
||
| 57 | } |
||
| 58 | list($userTable, $userIdentifier) = explode(static::SEPARATOR, $identifier); |
||
| 59 | $userTable = empty($userTable) ? 'users' : $userTable; |
||
| 60 | return [$userTable, $userIdentifier]; |
||
| 61 | } |
||
| 62 | } |
||
| 63 |