for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\DbSnapshots\Events;
use Illuminate\Filesystem\FilesystemAdapter;
class DeletedSnapshot
{
public string $fileName;
public FilesystemAdapter $disk;
public function __construct(string $fileName, FilesystemAdapter $disk)
$this->fileName = $fileName;
$this->disk = $disk;
}