Skip to content

Commit

Permalink
🚿
Browse files Browse the repository at this point in the history
  • Loading branch information
codemasher committed Jan 30, 2019
1 parent 4438748 commit 902bdcc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/ParserMiddlewareInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace chillerlan\BBCode;

use chillerlan\Traits\ContainerInterface;
use chillerlan\Settings\SettingsContainerInterface;
use Psr\Log\LoggerInterface;
use Psr\SimpleCache\CacheInterface;

Expand All @@ -21,11 +21,11 @@ interface ParserMiddlewareInterface{
/**
* ParserMiddlewareInterface constructor.
*
* @param \chillerlan\Traits\ContainerInterface $options
* @param \Psr\SimpleCache\CacheInterface $cache
* @param \Psr\Log\LoggerInterface $logger
* @param \chillerlan\Settings\SettingsContainerInterface $options
* @param \Psr\SimpleCache\CacheInterface $cache
* @param \Psr\Log\LoggerInterface $logger
*/
public function __construct(ContainerInterface $options, CacheInterface $cache, LoggerInterface $logger);
public function __construct(SettingsContainerInterface $options, CacheInterface $cache, LoggerInterface $logger);

/**
* Pre-parser
Expand Down

0 comments on commit 902bdcc

Please sign in to comment.