diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..373c8ec --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +source +var +vendor +.php-cs-fixer.cache +composer.lock diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php new file mode 100644 index 0000000..9c1c04b --- /dev/null +++ b/.php-cs-fixer.php @@ -0,0 +1,34 @@ +in(__DIR__) +; + +$header = << +@link https://www.oxidmodule.com +EOF; + +$config = new PhpCsFixer\Config(); +return $config->setRules([ + '@PHP80Migration' => true, + '@PSR12' => true, + 'header_comment' => [ + 'comment_type' => 'PHPDoc', + 'header' => $header, + 'location' => 'after_open', + 'separate' => 'both', + ], + 'php_unit_test_class_requires_covers' => true, + 'doctrine_annotation_indentation' => true, +]) + ->setFinder($finder) +; \ No newline at end of file diff --git a/composer.json b/composer.json index 8c827a2..61857e4 100644 --- a/composer.json +++ b/composer.json @@ -22,9 +22,23 @@ "monolog/monolog": "^1.27", "d3/sensitive-message-formatter": "^1.0" }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.65", + "phpstan/phpstan": "^2.0" + }, "autoload": { "psr-4": { "D3\\GuzzleFactory\\": "src/" } + }, + "autoload-dev": { + "psr-4": { + "D3\\OxidGuzzleFactory\\tests\\": "tests/" + } + }, + "scripts": { + "check-style": "./vendor/bin/php-cs-fixer fix --verbose --dry-run", + "fix-style": "./vendor/bin/php-cs-fixer fix --verbose", + "check-code": "./vendor/bin/phpstan analyse -c phpstan.neon --no-progress --ansi" } } diff --git a/phpstan.neon b/phpstan.neon new file mode 100644 index 0000000..a81054e --- /dev/null +++ b/phpstan.neon @@ -0,0 +1,9 @@ +parameters: + scanFiles: + - vendor/oxid-esales/oxideshop-ce/source/bootstrap.php + - vendor/oxid-esales/oxideshop-ce/source/oxfunctions.php + - vendor/oxid-esales/oxideshop-ce/source/overridablefunctions.php + paths: + - src + level: 10 + phpVersion: 80000 \ No newline at end of file diff --git a/src/GuzzleFactory.php b/src/GuzzleFactory.php index 2f90418..4aaad44 100644 --- a/src/GuzzleFactory.php +++ b/src/GuzzleFactory.php @@ -1,8 +1,10 @@ [ 'Content-Type' => $this->getContentType(), 'Accept' => $this->getAccept(), - 'User-Agent' => $this->getUserAgent() - ] + 'User-Agent' => $this->getUserAgent(), + ], ]); } @@ -46,7 +51,15 @@ class GuzzleFactory $stack = HandlerStack::create(); foreach ($this->getLoggers() as $logger) { - $stack->push( Middleware::log( $logger, $this->getMessageFormatter(), $this->getMessageLevel() ) ); + /** @var 'alert'|'critical'|'debug'|'emergency'|'error'|'info'|'notice'|'warning' $logLevelName */ + $logLevelName = Logger::getLevelName($this->getMessageLevel()); + $stack->push( + Middleware::log( + $logger, + $this->getMessageFormatter(), + $logLevelName + ) + ); } return $stack; diff --git a/src/HeaderTrait.php b/src/HeaderTrait.php index aed4a87..e6b1c70 100644 --- a/src/HeaderTrait.php +++ b/src/HeaderTrait.php @@ -1,8 +1,10 @@ accept ?? 'application/json'; } - public function setAccept( ?string $accept ): void + public function setAccept(?string $accept): void { $this->accept = $accept; } @@ -36,7 +40,7 @@ trait HeaderTrait return $this->contentType ?? 'application/json'; } - public function setContentType( ?string $contentType ): void + public function setContentType(?string $contentType): void { $this->contentType = $contentType; } @@ -46,7 +50,7 @@ trait HeaderTrait return $this->userAgent ?? Utils::defaultUserAgent(); } - public function setUserAgent( ?string $userAgent ): void + public function setUserAgent(?string $userAgent): void { $this->userAgent = $userAgent; } diff --git a/src/LoggerTrait.php b/src/LoggerTrait.php index 225aff6..612039d 100644 --- a/src/LoggerTrait.php +++ b/src/LoggerTrait.php @@ -1,8 +1,10 @@ loggers[md5(serialize($logger))] = $logger; } + /** + * @return LoggerInterface[] + */ protected function getLoggers(): array { return $this->loggers; @@ -62,7 +70,7 @@ trait LoggerTrait return $this->messageLevel ?? Logger::INFO; } - public function setMessageLevel( ?int $messageLevel ): void + public function setMessageLevel(?int $messageLevel): void { $this->messageLevel = $messageLevel; } diff --git a/src/MessageFormatterTrait.php b/src/MessageFormatterTrait.php index 1e44dfa..9b1e015 100644 --- a/src/MessageFormatterTrait.php +++ b/src/MessageFormatterTrait.php @@ -1,8 +1,10 @@ formatter ?? $this->getDefaultMessageFormatter(); } - public function setMessageFormatter( ?string $template, ?array $anonymisations = null, ?string $replaceChar = null): void + /** + * @param string|null $template + * @param string[]|null $anonymisations + * @param string|null $replaceChar + * @return void + */ + public function setMessageFormatter(?string $template, ?array $anonymisations = null, ?string $replaceChar = null): void { - $template = $template ?? $this->getDefaultFormatterTemplate(); + $template ??= $this->getDefaultFormatterTemplate(); $this->formatter = is_null($anonymisations) ? - $this->getDefaultMessageFormatter( $template) : + $this->getDefaultMessageFormatter($template) : new sensitiveMessageFormatter( $template, $anonymisations, @@ -42,7 +52,7 @@ trait MessageFormatterTrait protected function getDefaultMessageFormatter(?string $template = null): MessageFormatterInterface { - $template = $template ?? $this->getDefaultFormatterTemplate(); + $template ??= $this->getDefaultFormatterTemplate(); return new MessageFormatter( $template, );