Lasse Foo-Rafn

Results 44 comments of Lasse Foo-Rafn

Wouldnt this work by replacing the variables locally instead? Like: ``` php // User Model/Class ... function formattedUsername() { $username = $this->data['username']; $username = str_replace('_', '+', $username); $username = str_replace('...

Any update here? I'd rather not bug my team about this and not all IDEs handle this automatically.

We should probably look at the issue(s) Rails had with this, when considering adding it to Laravel. If the issues are strictly "dev misunderstood how it works", maybe it can...

submit a PR to change it

I think ideally empty arrays would still be sent (as an empty array, not as a null/empty string), since they're not NOTHING, just empty. If I have a PUT endpoint...

@RobertBoes ahh got it, so basically to replicate the default (no-file in form) behavior as closely as possible

I think something as simple as adding a period for some number formatting could take it most of the way. So instead of `18859ms` it would say `18.859ms` (or with...

I think solution 2 is pretty good and preferred. Easily readable without losing information 👍 Wouldn't hate solution 1 though