15 lines
219 B
PHP
Executable File
15 lines
219 B
PHP
Executable File
<?php
|
|
|
|
namespace Spatie\Backup\Events;
|
|
|
|
class BackupZipWasCreated
|
|
{
|
|
/** @var string */
|
|
public $pathToZip;
|
|
|
|
public function __construct(string $pathToZip)
|
|
{
|
|
$this->pathToZip = $pathToZip;
|
|
}
|
|
}
|