dogma icon indicating copy to clipboard operation
dogma copied to clipboard

Things and stuffs.

Results 10 dogma issues
Sort by recently updated
recently updated
newest added

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...

dependencies

![123](https://user-images.githubusercontent.com/1905964/40484248-37c78612-5f5b-11e8-8aa0-18f4c65daeac.png)

`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.

bug

`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...