15 regels
305 B
Plaintext
15 regels
305 B
Plaintext
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
$filePath = '../bootstrap.php';
|
||
|
$currentDirectory = __DIR__ . '/';
|
||
|
$filePath = $currentDirectory . $filePath;
|
||
|
|
||
|
require($filePath);
|
||
|
|
||
|
$change = new \D3\TaxRatesAdjustment\Models\raiseArticlePrices();
|
||
|
try {
|
||
|
$change->run();
|
||
|
} catch ( \Exception $e) {
|
||
|
echo $e->getMessage();
|
||
|
}
|