gitextract_1f2ttfmh/ ├── .github/ │ └── workflows/ │ └── php.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── infection.json.dist ├── phpunit.xml.dist ├── psalm.xml.dist ├── src/ │ ├── Enum/ │ │ └── TypeEnum.php │ ├── Exception/ │ │ ├── CannotModifyMessException.php │ │ ├── MessExceptionInterface.php │ │ ├── MissingKeyException.php │ │ ├── UncastableValueException.php │ │ ├── UnexpectedKeyTypeException.php │ │ └── UnexpectedTypeException.php │ ├── Mess.php │ ├── MessInterface.php │ ├── MissingMess.php │ ├── TypedAccessor.php │ └── functions.php └── tests/ └── unit/ ├── Exception/ │ ├── MissingKeyExceptionTest.php │ ├── UncastableValueExceptionTest.php │ ├── UnexpectedKeyTypeExceptionTest.php │ └── UnexpectedTypeExceptionTest.php ├── MessTest.php └── MissingMessTest.php