Skip to content

Commit

Permalink
Change order of props
Browse files Browse the repository at this point in the history
  • Loading branch information
loevgaard committed Jul 26, 2022
1 parent 9ec341f commit f60433f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/TagBag.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ final class TagBag implements TagBagInterface, LoggerAwareInterface

private LoggerInterface $logger;

private FingerprintGeneratorInterface $fingerprintGenerator;

private ?StorageInterface $storage = null;

private ?EventDispatcherInterface $eventDispatcher = null;

private RendererInterface $renderer;

private FingerprintGeneratorInterface $fingerprintGenerator;

public function __construct(RendererInterface $renderer, FingerprintGeneratorInterface $fingerprintGenerator = null)
{
$this->logger = new NullLogger();
$this->fingerprintGenerator = $fingerprintGenerator ?? new ValueBasedFingerprintGenerator();
$this->renderer = $renderer;
$this->fingerprintGenerator = $fingerprintGenerator ?? new ValueBasedFingerprintGenerator();
}

public function add(TagInterface $tag): void
Expand Down

0 comments on commit f60433f

Please sign in to comment.