Skip to content
This repository was archived by the owner on Aug 22, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Profiler/FeatureDataCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Flagception\Bundle\FlagceptionBundle\Profiler;

use Flagception\Bundle\FlagceptionBundle\Activator\TraceableChainActivator;
use Flagception\Activator\ChainActivator;
use Flagception\Decorator\ChainDecorator;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
Expand All @@ -20,7 +20,7 @@ class FeatureDataCollector extends DataCollector
/**
* The profiler chain activator
*
* @var TraceableChainActivator
* @var ChainActivator
*/
private $chainActivator;

Expand All @@ -34,10 +34,10 @@ class FeatureDataCollector extends DataCollector
/**
* FeatureDataCollector constructor.
*
* @param TraceableChainActivator $chainActivator
* @param ChainActivator $chainActivator
* @param ChainDecorator $chainDecorator
*/
public function __construct(TraceableChainActivator $chainActivator, ChainDecorator $chainDecorator)
public function __construct(ChainActivator $chainActivator, ChainDecorator $chainDecorator)
{
$this->chainActivator = $chainActivator;
$this->chainDecorator = $chainDecorator;
Expand Down