dogma
dogma copied to clipboard
Things and stuffs.
Opraveno po vzoru `DateInterval::createFromString` která již empty interval umí vyrobit. - `DayOfYearInterval ` s tím nevím jak si poradit, volání fce `format` na empty intervalu vyhodí chybu, ale nelze to...
``` $string = NightInterval::empty()->format(); NightInterval::createFromString($string); // will fail ```
_Dependabot Preview will be shut down on August 3rd, 2021. In order to keep getting Dependabot updates, please merge this PR and migrate to GitHub-native Dependabot before then._ Dependabot has...

`input[@name='pole[123]']` by nemělo být přeloženo na `[@name='pole[position() >= 123]']` nedaj se pak zachytit inputy dle name s polem.
`DateTimeIntervalSet::normalize()` not always normalize fully: ``` use Dogma\Time\DateTime; use Dogma\Time\Interval\DateTimeInterval; use Dogma\Time\Interval\DateTimeIntervalSet; $i1 = new DateTimeInterval(new DateTime('2024-09-01'), new DateTime('2024-09-10')); $i2 = new DateTimeInterval(new DateTime('2024-08-01'), new DateTime('2024-08-10')); $i3 = new DateTimeInterval(new...