Joseph D. Purcell

Results 30 comments of Joseph D. Purcell

I absolutely agree. If anyone else has implemented this, do share!

I don't see this as an issue or limitation. If you are using serialization groups and want to expose properties generated by PaginatedRepresentation or CollectionRepresentation then you have three options:...

It's currently published on packagist as `heise/shariff`. I recommend being consistent in vendor naming, i.e. either update gihub to be `heise/shariff` or re-publish on packagist as `heiseonline/shariff`. That said, this...

Sorry about that! I didn't take a deep enough look apparently. So, https://packagist.org/packages/heise/shariff = https://github.com/heiseonline/shariff-backend-php. But, https://github.com/heiseonline/shariff is not on packagist. Got it!

I ran into that error too just now. My assumption is that this line of code is being hit: ```ts const errors = await validate(transformedClass) ``` And, at that point...

I think #37 would be an acceptable way to show progress. To me, a lack of logging/debug reporting is itself a bug. PHPMD is an important part of the PHP...

Here is how I implemented this on a NestJS project with Typescript: ```javascript module.exports = { rules: { 'no-restricted-imports': ['error', {'patterns': ['..*']}], }, }; ``` It prevents any import statement...

I'm having an odd issue where the reported row does not align with the line number the error was on, and it's resulting in duplicate errors. I created a fiddle...

I wasn't counting correctly. Here are tips when using a step function: 1. `ParseResult.errors` is aggregate; it contains all errors 2. If you have `header: true` then `ParseResult.errors[0].row` is `0`...