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

TruncateTable   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 51
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 6
lcom 1
cbo 2
dl 0
loc 51
ccs 15
cts 15
cp 1
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A enable() 0 4 1
A execute() 0 14 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