| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 20 | public function __construct( |
||
| 21 | ArticleCommentFactoryInterface $decoratedFactory, |
||
| 22 | TokenStorageInterface $tokenStorage |
||
| 23 | ) { |
||
| 24 | $this->decoratedFactory = $decoratedFactory; |
||
| 25 | |||
| 26 | $token = $tokenStorage->getToken(); |
||
| 27 | $this->shopUser = $token !== null ? $token->getUser() : null; |
||
| 28 | } |
||
| 53 |