| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class UserStoryUpdateEvent extends Event |
||
| 10 | { |
||
| 11 | /** @var UserStory **/ |
||
| 12 | protected $userStory; |
||
| 13 | |||
| 14 | const NAME = 'scrumban.user_story_update'; |
||
| 15 | |||
| 16 | public function __construct(UserStory $userStory) |
||
| 17 | { |
||
| 18 | $this->userStory = $userStory; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function getUserStory(): UserStory |
||
| 24 | } |
||
| 25 | } |