Kyle

Results 319 comments of Kyle

Indeed, but it's not the same purpose and result. The "good" rule would be to only accept `$_` (variable name exactly equal to `"_"`) when assigned and not read. Using...

I'm still open to for either the `allow_underscore` solution (as nothing prevent us to implement this option in every naming rules). It would even be great for consistency, or the...

It sounds like this repo is possibly no longer maintained so I forked it. https://github.com/kylekatarnls/html-object I switched to GitHub Actions up to PHP 8.3 and merged your compatibility fix. I...

Ah yes, I should add the "replace" key to ensure precedence.

Hi, thanks for you help, is there any source where we can see it used? (Gov site, school site)?

Thanks, last question, does it apply to both `роки` and `років` plurals?

There is no relation between the ISO you passed to `createFromIso` and the output of `toIso8601String` as there is many ways to create periods and `toIso8601String` must be available and...

The thing is that a period is not a simple interval, it's a repeated interval. And ISO 8601 spec for repeated interval only allow recurrences to be defined as a...

Similarly, if you have neither end nor recurrence, you'll get the same ISO in and out: ```php echo CarbonPeriod::createFromIso('2000-01-01T00:00:00+00:00/PT12H')->toIso8601String(); ``` => ``` 2000-01-01T00:00:00+00:00/PT12H ```

This behavior won't change for 2.x for backward-compatibility but we can have it in 3.0. #2909