Completed
Push — remove_installer_config ( 82898d...d094bb )
by André
24:33
created

CleanInstaller::createConfiguration()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 3
rs 10
c 1
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
/**
4
 * This file is part of the eZ Publish Kernel package.
5
 *
6
 * @copyright Copyright (C) eZ Systems AS. All rights reserved.
7
 * @license For full copyright and license information view LICENSE file distributed with this source code.
8
 */
9
namespace EzSystems\PlatformInstallerBundle\Installer;
10
11
class CleanInstaller extends DbBasedInstaller implements Installer
12
{
13
    public function createConfiguration()
14
    {
15
    }
16
17
    public function importSchema()
18
    {
19
        $this->runQueriesFromFile(
20
            'vendor/ezsystems/ezpublish-kernel/data/mysql/schema.sql'
21
        );
22
    }
23
24
    public function importData()
25
    {
26
        $this->runQueriesFromFile(
27
            'vendor/ezsystems/ezpublish-kernel/data/cleandata.sql'
28
        );
29
    }
30
31
    public function importBinaries()
32
    {
33
    }
34
}
35