Completed
Push — master ( a98764...852cbb )
by diego
25s
created

Classes/Feature/TruncateTable.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

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
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