19 lines
400 B
PHP
19 lines
400 B
PHP
<?php
|
|
|
|
namespace Modules\ProjectManagement\Events;
|
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Modules\ProjectManagement\Models\Project;
|
|
|
|
class ProjectStatusChanged
|
|
{
|
|
use Dispatchable, SerializesModels;
|
|
|
|
public function __construct(
|
|
public Project $project,
|
|
public string $oldStatus,
|
|
public string $newStatus,
|
|
) {}
|
|
}
|