├── .php-cs-fixer.php ├── Changelog.md ├── Readme.md ├── composer.json ├── phpstan.neon.dist ├── src ├── Exception.php ├── Exception │ ├── LogicException.php │ └── StorageException.php ├── Model │ ├── Message.php │ └── MessageInterface.php ├── Storage.php └── TransferableStorage.php └── tests └── Unit └── Model └── MessageTest.php /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-translation/common/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-translation/common/HEAD/Changelog.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-translation/common/HEAD/Readme.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-translation/common/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-translation/common/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-translation/common/HEAD/src/Exception.php -------------------------------------------------------------------------------- /src/Exception/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-translation/common/HEAD/src/Exception/LogicException.php -------------------------------------------------------------------------------- /src/Exception/StorageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-translation/common/HEAD/src/Exception/StorageException.php -------------------------------------------------------------------------------- /src/Model/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-translation/common/HEAD/src/Model/Message.php -------------------------------------------------------------------------------- /src/Model/MessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-translation/common/HEAD/src/Model/MessageInterface.php -------------------------------------------------------------------------------- /src/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-translation/common/HEAD/src/Storage.php -------------------------------------------------------------------------------- /src/TransferableStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-translation/common/HEAD/src/TransferableStorage.php -------------------------------------------------------------------------------- /tests/Unit/Model/MessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-translation/common/HEAD/tests/Unit/Model/MessageTest.php --------------------------------------------------------------------------------