Skip to content

Commit

Permalink
Merge pull request #21 from Setono/revert-final-class
Browse files Browse the repository at this point in the history
Defining back the class to not final with protected attributes
  • Loading branch information
Roshyo authored Sep 28, 2020
2 parents 71be2ab + 5325310 commit aa23017
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Trustpilot/Order/Provider/LatestOrdersProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
use function Safe\sprintf;
use Sylius\Component\Core\Repository\OrderRepositoryInterface;

final class LatestOrdersProvider implements PreQualifiedOrdersProviderInterface
class LatestOrdersProvider implements PreQualifiedOrdersProviderInterface
{
/** @var OrderRepositoryInterface */
private $orderRepository;
protected $orderRepository;

/** @var int */
private $latestDays;
protected $latestDays;

public function __construct(
OrderRepositoryInterface $orderRepository,
Expand Down

0 comments on commit aa23017

Please sign in to comment.