The formattening, part 1

This commit is contained in:
2025-03-12 00:20:04 +01:00
parent ece3c8ab80
commit b6697e5750
31 changed files with 1420 additions and 1356 deletions
+6 -7
View File
@@ -1,12 +1,11 @@
<?php //declare(strict_types=1);
<?php
declare(strict_types=1);
namespace pvv\side;
use \DateTimeImmutable;
interface Activity {
public function getNextEventFrom(\DateTimeImmutable $date) /* : Event */;
public function getNextEventFrom(DateTimeImmutable $date) /* : Event */;
public function getPreviousEventFrom(DateTimeImmutable $date) /* : Event */;
public function getPreviousEventFrom(\DateTimeImmutable $date) /* : Event */;
}