This commit is contained in:
Buster Neece 2023-03-03 09:32:45 -06:00
parent bb163c2142
commit 0db91c40f9
No known key found for this signature in database
GPG Key ID: F1D2E64A0005E80E
3 changed files with 37 additions and 0 deletions

10
src/Backup/Exporter.php Normal file
View File

@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace App\Backup;
final class Exporter
{
}

View File

@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace App\Backup\Exporter;
use App\Entity\Station;
final class StationExporter
{
public function __invoke(
Station $station
): array {
}
}

10
src/Backup/Importer.php Normal file
View File

@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace App\Backup;
final class Importer
{
}