Primo Committ
This commit is contained in:
16
vendor/spatie/laravel-backup/src/Events/BackupManifestWasCreated.php
vendored
Normal file
16
vendor/spatie/laravel-backup/src/Events/BackupManifestWasCreated.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Spatie\Backup\Events;
|
||||
|
||||
use Spatie\Backup\Tasks\Backup\Manifest;
|
||||
|
||||
class BackupManifestWasCreated
|
||||
{
|
||||
/** @var \Spatie\Backup\Tasks\Backup\Manifest */
|
||||
public $manifest;
|
||||
|
||||
public function __construct(Manifest $manifest)
|
||||
{
|
||||
$this->manifest = $manifest;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user