Bolt\EventListener\StorageEventListener::__construct PHP Method

__construct() public method

Constructor.
public __construct ( TimedRecord $timedRecord, Bolt\Storage\Database\Schema\SchemaManagerInterface $schemaManager, Symfony\Component\Routing\Generator\UrlGeneratorInterface $urlGenerator, Bolt\Logger\FlashLoggerInterface $loggerFlash, PasswordLib\Password\Factory $passwordFactory, integer $hashStrength, boolean $timedRecordsEnabled )
$timedRecord Bolt\Storage\EventProcessor\TimedRecord
$schemaManager Bolt\Storage\Database\Schema\SchemaManagerInterface
$urlGenerator Symfony\Component\Routing\Generator\UrlGeneratorInterface
$loggerFlash Bolt\Logger\FlashLoggerInterface
$passwordFactory PasswordLib\Password\Factory
$hashStrength integer
$timedRecordsEnabled boolean
    public function __construct(EventProcessor\TimedRecord $timedRecord, Schema\SchemaManagerInterface $schemaManager, UrlGeneratorInterface $urlGenerator, FlashLoggerInterface $loggerFlash, PasswordFactory $passwordFactory, $hashStrength, $timedRecordsEnabled)
    {
        $this->timedRecord = $timedRecord;
        $this->schemaManager = $schemaManager;
        $this->urlGenerator = $urlGenerator;
        $this->loggerFlash = $loggerFlash;
        $this->passwordFactory = $passwordFactory;
        $this->hashStrength = $hashStrength;
        $this->timedRecordsEnabled = $timedRecordsEnabled;
    }