8
0
Fork 0
This repository has been archived on 2021-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
TaxRatesAdjustment/bin/raiseTaxRate

15 lines
299 B
PHP

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