diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..f4da20891502a3992abf2981d8f6c46e33868ab6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +tools/ +phpstan.neon +.phpunit.result.cache +phpunit.xml \ No newline at end of file diff --git a/.phive/phars.xml b/.phive/phars.xml new file mode 100644 index 0000000000000000000000000000000000000000..a1315a09b4adad780a9c5e52f74835c708c5c7d5 --- /dev/null +++ b/.phive/phars.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<phive xmlns="https://phar.io/phive"> + <phar name="phpstan" version="^1.10.67" installed="1.10.67" location="./tools/phpstan" copy="false"/> +</phive> diff --git a/ajax/getAllowedCurrencies.php b/ajax/getAllowedCurrencies.php index 1b35b6a704b5f68845db1fde2c0b9715f070607f..542f52c3a0f39c955dc94e29ef6591905dfad84d 100644 --- a/ajax/getAllowedCurrencies.php +++ b/ajax/getAllowedCurrencies.php @@ -14,7 +14,6 @@ $allowed = QUI\ERP\Currency\Handler::getAllowedCurrencies(); $result = []; - /* @var $Currency \QUI\ERP\Currency\Currency */ foreach ($allowed as $Currency) { $result[] = $Currency->toArray(); } diff --git a/ajax/setUserCurrency.php b/ajax/setUserCurrency.php index 4e4af740da70c164b1595bb9f7c4edb2b33888b5..55f9b043601978c934aafac12d9c68fe540cfcd6 100644 --- a/ajax/setUserCurrency.php +++ b/ajax/setUserCurrency.php @@ -12,11 +12,10 @@ function ($currency) { $allowed = QUI\ERP\Currency\Handler::getAllowedCurrencies(); $allowed = \array_map(function ($Currency) { - /* @var $Currency \QUI\ERP\Currency\Currency */ return $Currency->getCode(); }, $allowed); - $allowed = \array_flip($allowed); + $allowed = array_flip($allowed); if (!isset($allowed[$currency])) { return; diff --git a/ajax/update.php b/ajax/update.php index ed59b6064281198b5069086f228feeb1f187344e..f770dc7cfaa4069bef4d0ad7cbfc013d78ac10ee 100644 --- a/ajax/update.php +++ b/ajax/update.php @@ -9,6 +9,9 @@ * * @return array */ + +use QUI\ERP\Currency\Handler; + QUI::$Ajax->registerFunction( 'package_quiqqer_currency_ajax_update', function ($currency, $code, $rate, $precision, $type, $customData) { @@ -17,7 +20,7 @@ function ($currency, $code, $rate, $precision, $type, $customData) { QUI\ERP\Currency\Handler::updateCurrency($currency, [ 'rate' => $rate, 'code' => $code, - 'type' => !empty($type) ? $type : \QUI\ERP\Currency\Handler::CURRENCY_TYPE_DEFAULT, + 'type' => !empty($type) ? $type : Handler::CURRENCY_TYPE_DEFAULT, 'customData' => $customData ]); diff --git a/composer.json b/composer.json index 55ba4e18b1c5b972d273667a39b790e2899a3c73..16ff89243d5cf87fa20c102a273862d8a9409265 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "quiqqer\/currency", + "name": "quiqqer/currency", "type": "quiqqer-module", "description": "Integrates different currencies in QUIQQER", "license": "GPL-3.0-or-later", @@ -7,7 +7,7 @@ { "name": "Henning Leutz", "email": "leutz@pcsg.de", - "homepage": "http:\/\/www.pcsg.de", + "homepage": "https://www.pcsg.de", "role": "Developer" } ], @@ -15,13 +15,14 @@ "email": "support@pcsg.de" }, "require": { + "php": "^8.1", "ext-intl": "*", - "quiqqer\/quiqqer": "*", - "quiqqer\/qui": ">=1|*@dev" + "quiqqer/core": "^2", + "quiqqer/qui": "^1" }, "autoload": { "psr-4": { - "QUI\\ERP\\Currency\\": "src\/QUI\/ERP\/Currency" + "QUI\\ERP\\Currency\\": "src/QUI/ERP/Currency" } } } diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/phpstan.dist.neon b/phpstan.dist.neon new file mode 100644 index 0000000000000000000000000000000000000000..a545a041a3c5b0c758d99bf8c1c49b2a83252eaa --- /dev/null +++ b/phpstan.dist.neon @@ -0,0 +1,10 @@ +includes: + - phpstan-baseline.neon + +parameters: + level: 1 + paths: + - src + - ajax + bootstrapFiles: + - tests/phpstan-bootstrap.php \ No newline at end of file diff --git a/src/QUI/ERP/Currency/AbstractCurrency.php b/src/QUI/ERP/Currency/AbstractCurrency.php index febd599887f8d4bcc94cc812e4b3482cdac54e0c..b0c5bb0bd8f9dd4040834f89ca71da0ced94956d 100644 --- a/src/QUI/ERP/Currency/AbstractCurrency.php +++ b/src/QUI/ERP/Currency/AbstractCurrency.php @@ -8,6 +8,7 @@ use NumberFormatter; use QUI; +use QUI\Exception; use function array_key_exists; use function floatval; @@ -35,27 +36,27 @@ abstract class AbstractCurrency implements CurrencyInterface /** * @var string */ - protected $code; + protected string $code; /** * @var integer */ - protected $precision = 2; + protected int $precision = 2; /** * @var float|bool */ - protected $exchangeRate = false; + protected bool|float $exchangeRate = false; /** * @var int */ - protected $autoupdate = 1; + protected mixed $autoupdate = 1; /** - * @var QUI\Locale + * @var ?QUI\Locale */ - protected $Locale; + protected ?QUI\Locale $Locale; protected array $customData = []; @@ -104,7 +105,7 @@ public function __construct(array $data, $Locale = false) * * @param QUI\Locale $Locale */ - public function setLocale(QUI\Locale $Locale) + public function setLocale(QUI\Locale $Locale): void { $this->Locale = $Locale; } @@ -203,9 +204,8 @@ public function amount($amount, QUI\Locale $Locale = null): float } $amount = str_replace(',', '.', $amount); - $amount = floatval($amount); - return $amount; + return floatval($amount); } /** @@ -275,11 +275,11 @@ public function autoupdate(): bool * * @param float|string $amount * @param string|CurrencyInterface $Currency - * @return float + * @return float|int|string * - * @throws QUI\Exception + * @throws Exception */ - public function convert($amount, $Currency) + public function convert($amount, $Currency): float|int|string { if (!is_numeric($amount)) { QUI\System\Log::addError('Only numeric are allowed Currency->convert()', [ @@ -347,7 +347,7 @@ public function convertFormat($amount, $Currency): string * @param boolean|string|Currency $Currency - optional, default = false -> return own exchange rate * @return float|boolean */ - public function getExchangeRate($Currency = false) + public function getExchangeRate($Currency = false): float|bool { if ($Currency === false) { return $this->exchangeRate; @@ -376,7 +376,7 @@ public function getExchangeRate($Currency = false) * * @param float|integer $rate */ - public function setExchangeRate($rate) + public function setExchangeRate($rate): void { $this->exchangeRate = (float)$rate; } @@ -408,7 +408,7 @@ public function getCustomData(): array * @param $value * @return void */ - public function setCustomDataEntry(string $key, $value) + public function setCustomDataEntry(string $key, $value): void { $this->customData[$key] = $value; } @@ -419,7 +419,7 @@ public function setCustomDataEntry(string $key, $value) * @param string $key * @return mixed */ - public function getCustomDataEntry(string $key) + public function getCustomDataEntry(string $key): mixed { if (array_key_exists($key, $this->customData)) { return $this->customData[$key]; diff --git a/src/QUI/ERP/Currency/Calc.php b/src/QUI/ERP/Currency/Calc.php index 2ab0d70f28c6a8c39939b651b7a3b8ee7e207c70..203012f3023a7e75b92fe2f70f46030b9f7b8407 100644 --- a/src/QUI/ERP/Currency/Calc.php +++ b/src/QUI/ERP/Currency/Calc.php @@ -18,15 +18,18 @@ class Calc /** * Convert the amount from one to another currency * - * @param float|string $amount - * @param string|Currency $currencyFrom - based currency - * @param string|Currency $currencyTo - optional, wanted currency, default = EUR + * @param float|int|string $amount + * @param string|array|Currency $currencyFrom - based currency + * @param array|string|Currency $currencyTo - optional, wanted currency, default = EUR * @return float * * @throws QUI\Exception */ - public static function convert($amount, $currencyFrom, $currencyTo = 'EUR'): float - { + public static function convert( + float|int|string $amount, + Currency|array|string $currencyFrom, + Currency|array|string $currencyTo = 'EUR' + ): float { $From = Handler::getCurrency($currencyFrom); $To = Handler::getCurrency($currencyTo); @@ -36,16 +39,18 @@ public static function convert($amount, $currencyFrom, $currencyTo = 'EUR'): flo /** * Convert with currency sign * - * @param float|string $amount - * @param string|Currency $currencyFrom - based currency - * @param string|Currency $currencyTo - optional, wanted currency, default = EUR - * + * @param float|int|string $amount + * @param array|string|Currency $currencyFrom - based currency + * @param array|string|Currency $currencyTo - optional, wanted currency, default = EUR * @return string * * @throws QUI\Exception */ - public static function convertWithSign($amount, $currencyFrom, $currencyTo = 'EUR'): string - { + public static function convertWithSign( + float|int|string $amount, + Currency|array|string $currencyFrom, + Currency|array|string $currencyTo = 'EUR' + ): string { $From = Handler::getCurrency($currencyFrom); $To = Handler::getCurrency($currencyTo); @@ -55,15 +60,16 @@ public static function convertWithSign($amount, $currencyFrom, $currencyTo = 'EU /** * Return the exchange rate between two currencies * - * @param string|Currency $currencyFrom - * @param string|Currency $currencyTo - * + * @param array|string|Currency $currencyFrom + * @param array|string|Currency $currencyTo * @return float|boolean * * @throws QUI\Exception */ - public static function getExchangeRateBetween($currencyFrom, $currencyTo) - { + public static function getExchangeRateBetween( + Currency|array|string $currencyFrom, + Currency|array|string $currencyTo + ): float|bool { $From = Handler::getCurrency($currencyFrom); $To = Handler::getCurrency($currencyTo); diff --git a/src/QUI/ERP/Currency/Conf.php b/src/QUI/ERP/Currency/Conf.php index abee516338761e9a8b2d0e3dfd3aaffcada490a2..1f15810f1e10f50ef9d83e215dc880a682392288 100644 --- a/src/QUI/ERP/Currency/Conf.php +++ b/src/QUI/ERP/Currency/Conf.php @@ -39,7 +39,7 @@ public static function getAccountingCurrency(): ?Currency return Handler::getCurrency( self::conf('currency', 'accountingCurrency') ); - } catch (QUI\Exception $Exception) { + } catch (QUI\Exception) { return Handler::getDefaultCurrency(); } } @@ -47,19 +47,19 @@ public static function getAccountingCurrency(): ?Currency /** * Return currency conf * - * @param $section - * @param $key + * @param string $section + * @param string|null $key * * @return array|bool|string */ - public static function conf($section, $key) + public static function conf(string $section, ?string $key): bool|array|string { try { $Package = QUI::getPackage('quiqqer/currency'); $Config = $Package->getConfig(); return $Config->get($section, $key); - } catch (QUI\Exception $Exception) { + } catch (QUI\Exception) { } return false; diff --git a/src/QUI/ERP/Currency/Console.php b/src/QUI/ERP/Currency/Console.php index 5f98dbf51dc6c4b09bfb89e84188639cc2b8135e..631820252d4285b1fe37581ded7f4a51d6398daf 100644 --- a/src/QUI/ERP/Currency/Console.php +++ b/src/QUI/ERP/Currency/Console.php @@ -35,10 +35,9 @@ public function __construct() * @throws Exception * @see \QUI\System\Console\Tool::execute() */ - public function execute() + public function execute(): void { Import::import(); - QUI::getEvents()->fireEvent('quiqqerCurrencyImport'); } } diff --git a/src/QUI/ERP/Currency/Cron.php b/src/QUI/ERP/Currency/Cron.php index f55cd90e99abc4d682b980743e43a8a00a2ae67a..94a21151a9a062fbb75cb2a558441b9dca03120c 100644 --- a/src/QUI/ERP/Currency/Cron.php +++ b/src/QUI/ERP/Currency/Cron.php @@ -18,10 +18,9 @@ class Cron * Start import * @throws QUI\Exception */ - public static function import() + public static function import(): void { Import::import(); - QUI::getEvents()->fireEvent('quiqqerCurrencyImport'); } } diff --git a/src/QUI/ERP/Currency/EventHandler.php b/src/QUI/ERP/Currency/EventHandler.php index 0c02f0a866bd43b62560118b99d73da91260f8fb..6ae24e0ff3579461ee7a21eb9d3216236a7f538d 100644 --- a/src/QUI/ERP/Currency/EventHandler.php +++ b/src/QUI/ERP/Currency/EventHandler.php @@ -20,7 +20,7 @@ class EventHandler /** * @param QUI\Template $TemplateManager */ - public static function onTemplateGetHeader(QUI\Template $TemplateManager) + public static function onTemplateGetHeader(QUI\Template $TemplateManager): void { try { $Currency = Handler::getDefaultCurrency(); @@ -50,7 +50,7 @@ public static function onTemplateGetHeader(QUI\Template $TemplateManager) * @param array $params Additional parameters passed to the method. * @return void */ - public static function onPackageConfigSave(Package $Package, array $params) + public static function onPackageConfigSave(Package $Package, array $params): void { if ($Package->getName() !== 'quiqqer/currency') { return; diff --git a/src/QUI/ERP/Currency/Handler.php b/src/QUI/ERP/Currency/Handler.php index 5108e30a3b259f20a31e199253d4d84eb0a1c64f..6c785e74bef46f5c3e681d208bcd6d9343064937 100644 --- a/src/QUI/ERP/Currency/Handler.php +++ b/src/QUI/ERP/Currency/Handler.php @@ -362,11 +362,11 @@ public static function getData(): array /** * Return a currency * - * @param string|Currency $currency + * @param Currency|string|array $currency * @return Currency * @throws QUI\Exception */ - public static function getCurrency($currency): Currency + public static function getCurrency(Currency|string|array $currency): Currency { if ($currency instanceof Currency) { return $currency; diff --git a/src/QUI/ERP/Currency/Import.php b/src/QUI/ERP/Currency/Import.php index 16e889248f1dbb4479f2c8ca93a8927f86c2bf32..821540d4dfd98ac772fe1b126ee96e2bccaef51e 100644 --- a/src/QUI/ERP/Currency/Import.php +++ b/src/QUI/ERP/Currency/Import.php @@ -26,14 +26,14 @@ class Import * * @throws QUI\Exception */ - public static function importCurrenciesFromECB() + public static function importCurrenciesFromECB(): void { $values = self::getECBData(); foreach ($values as $currency => $rate) { try { Handler::getCurrency($currency); - } catch (QUI\Exception $Exception) { + } catch (QUI\Exception) { // currency not exists, we must create it Handler::createCurrency($currency, $rate); } @@ -50,7 +50,7 @@ public static function importCurrenciesFromECB() * * @throws QUI\Exception */ - public static function import() + public static function import(): void { $values = self::getECBData(); diff --git a/tests/phpstan-bootstrap.php b/tests/phpstan-bootstrap.php new file mode 100644 index 0000000000000000000000000000000000000000..b61ff4b8300a965e0f46025ba64745a22b118e74 --- /dev/null +++ b/tests/phpstan-bootstrap.php @@ -0,0 +1,13 @@ +<?php + +if (!defined('QUIQQER_SYSTEM')) { + define('QUIQQER_SYSTEM', true); +} + +if (!defined('QUIQQER_AJAX')) { + define('QUIQQER_AJAX', true); +} + +putenv("QUIQQER_OTHER_AUTOLOADERS=KEEP"); + +require_once __DIR__ . '/../../../../bootstrap.php';