Split availability windows into bookable lesson-length slots; weekly calendar views; 12-hour times #50

Merged
thatguygriff merged 2 commits from feature/slot-splitting-and-week-view into main 2026-07-05 19:14:51 +00:00
Showing only changes of commit dbf61e8593 - Show all commits
+2 -1
View File
@@ -97,7 +97,8 @@ jobs:
- uses: actions/checkout@v4
- name: Check for debug statements
run: |
if grep -rn --include="*.php" -E "(var_dump|var_export|print_r|error_log|dd\(|dump\()" src/; then
# \b keeps method calls like DateTimeImmutable::add() from matching dd(.
if grep -rn --include="*.php" -E "\b(var_dump|var_export|print_r|error_log|dd|dump)\s*\(" src/; then
echo "Debug code found in src/ — please remove before merging."
exit 1
fi