Skip to content

Commit 698d0bf

Browse files
author
Jérôme Parmentier
committed
Remove final keywords from methods definition
1 parent eb1e6c6 commit 698d0bf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Repository/StatementRepository.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function __construct(MappedStatementRepository $repository)
3939
/**
4040
* {@inheritdoc}
4141
*/
42-
final public function findStatementById(StatementId $statementId, Actor $authority = null)
42+
public function findStatementById(StatementId $statementId, Actor $authority = null)
4343
{
4444
$criteria = array('id' => $statementId->getValue());
4545

@@ -65,7 +65,7 @@ final public function findStatementById(StatementId $statementId, Actor $authori
6565
/**
6666
* {@inheritdoc}
6767
*/
68-
final public function findVoidedStatementById(StatementId $voidedStatementId, Actor $authority = null)
68+
public function findVoidedStatementById(StatementId $voidedStatementId, Actor $authority = null)
6969
{
7070
$criteria = array('id' => $voidedStatementId->getValue());
7171

@@ -91,7 +91,7 @@ final public function findVoidedStatementById(StatementId $voidedStatementId, Ac
9191
/**
9292
* {@inheritdoc}
9393
*/
94-
final public function findStatementsBy(StatementsFilter $criteria, Actor $authority = null)
94+
public function findStatementsBy(StatementsFilter $criteria, Actor $authority = null)
9595
{
9696
$criteria = $criteria->getFilter();
9797

@@ -112,7 +112,7 @@ final public function findStatementsBy(StatementsFilter $criteria, Actor $author
112112
/**
113113
* {@inheritdoc}
114114
*/
115-
final public function storeStatement(Statement $statement, $flush = true)
115+
public function storeStatement(Statement $statement, $flush = true)
116116
{
117117
if (null === $statement->getId()) {
118118
if (class_exists('Xabbuh\XApi\Model\Uuid')) {

0 commit comments

Comments
 (0)