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