Skip to content

Commit

Permalink
Removed final keyword from constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
juniwalk committed Oct 12, 2022
1 parent 1350e63 commit 4ff9cd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Entity/RecordRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ abstract class RecordRepository extends AbstractRepository
* @throws RecordNotValidException
* @throws EntityNotFoundException
*/
final public function __construct(EntityManager $entityManager)
public function __construct(EntityManager $entityManager)
{
parent::__construct($entityManager);

Expand Down

0 comments on commit 4ff9cd7

Please sign in to comment.