1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 11:13:36 +02:00
Files
archived-php-src/ext/calendar
Tim Düsterhus 4870baacf0 calendar: Use true / false instead of 1 / 0 when assigning to bool
Changes done with Coccinelle:

    @@
    bool b;
    @@

    - b = 0
    + b = false

    @@
    bool b;
    @@

    - b = 1
    + b = true
2025-09-24 18:51:40 +02:00
..
2025-08-07 19:09:03 +02:00
2019-02-03 21:03:00 +01:00
2025-06-23 11:46:45 +01:00