Completed
Push — master ( 7244ac...e43b88 )
by diego
07:12
created

TruncateTable::execute()   A

Complexity

Conditions 4
Paths 4

Size

Total Lines 14

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 9
CRAP Score 4

Importance

Changes 0
Metric Value
dl 0
loc 14
ccs 9
cts 9
cp 1
rs 9.7998
c 0
b 0
f 0
cc 4
nc 4
nop 2
crap 4
1
<?php
2
/**
3
 * TruncateTable.php
4
 */
5
namespace HDNET\Importr\Feature;
6
7
use HDNET\Importr\Processor\Configuration;
8
use HDNET\Importr\Service\DatabaseService;
9
10
/**
11
 * Class TruncateTable
12
 */
13
class TruncateTable
14
{
15
    /**
16
     * @var DatabaseService
17
     */
18
    protected $databaseService;
19
20
    /**
21
     * TruncateTable constructor.
22
     *
23
     * @param DatabaseService $databaseService
24
     */
25 4
    public function __construct(DatabaseService $databaseService)
26
    {
27 4
        $this->databaseService = $databaseService;
28 4
    }
29
30
    /**
31
     * @return void
32
     */
33 1
    public static function enable()
34
    {
35 1
        FeatureRegistry::enable('preParseConfiguration', Configuration::class);
36 1
    }
37
38
    /**
39
     * To truncate a table from the importr you
40
     * have to use the "truncate: " configuration.
41
     * If you pass a string, then the string is
42
     * interpreted as a table name. If you pass
43
     * an array, every element is used as a table
44
     * name.
45
     *
46
     * @param Configuration $processor
47
     * @param array         $configuration
48
     */
49 3
    public function execute(Configuration $processor, array $configuration)
0 ignored issues
show
Unused Code introduced by
The parameter $processor is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
50
    {
51 3
        if (isset($configuration['truncate'])) {
52 2
            if (is_array($configuration['truncate'])) {
53 1
                foreach ($configuration['truncate'] as $table) {
54 1
                    $this->databaseService->getDatabaseConnection()
55 1
                        ->exec_TRUNCATEquery($table);
56
                }
57
            } else {
58 1
                $this->databaseService->getDatabaseConnection()
59 1
                    ->exec_TRUNCATEquery($configuration['truncate']);
60
            }
61
        }
62 3
    }
63
}
64