Skip to content

Commit

Permalink
Removed API response json validation for StringFormat (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeek authored Oct 4, 2023
1 parent f8baf02 commit 1671c2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

Все существенные изменения в проекте будут задокументированы в этом файле. Формат основан на [Keep a Changelog](https://keepachangelog.com/), и этот проект придерживается семантического версионирования ([semver](https://semver.org/)).

## v0.9.1

### Changed

- `\Evgeek\Moysklad\Formatters\StringFormat::class` отныне не требует, чтобы ответ от API был в json формате. Это позволяет при помощи данного форматтера работать с любыми ответами, включая [файлы](https://github.com/evgeek/moysklad/issues/34).

## v0.9.0

### Changed
Expand Down
6 changes: 0 additions & 6 deletions src/Formatters/StringFormat.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@ class StringFormat extends AbstractMultiDecoder
{
public function encode(string $content): string
{
if ($content === '') {
return '';
}

$this->validateStringIsJsonObject($content);

return $content;
}
}

0 comments on commit 1671c2e

Please sign in to comment.