eZ\Bundle\EzPublishCoreBundle\Command\TestInitDbCommand::applyStatements PHP Метод

applyStatements() защищенный Метод

Applies the given SQL $statements to the database in use.
protected applyStatements ( array $statements )
$statements array
    protected function applyStatements(array $statements)
    {
        $handler = $this->getDatabaseHandler();
        foreach ($statements as $statement) {
            $handler->exec($statement);
        }
    }