| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 2 | ||
| Bugs | 1 | Features | 2 |
| 1 | <?php namespace App\Events\Users; |
||
| 28 | 1 | public function __construct(UserInterface $user, UserInterface $userAfter, $oauthProviderName = null) |
|
| 29 | { |
||
| 30 | 1 | $this->userBefore = $user; |
|
| 31 | 1 | $this->userAfter = $userAfter; |
|
| 32 | 1 | $this->oauthProviderName = $oauthProviderName; |
|
| 33 | |||
| 34 | 1 | parent::__construct(); |
|
| 35 | 1 | } |
|
| 36 | } |
||
| 37 |