File "CreateReviewEvent.php"

Full Path: /home/bettaeza/flyinsyria.com/.well-known/Core/Events/CreateReviewEvent.php
File size: 328 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Modules\Core\Events;


use Illuminate\Queue\SerializesModels;

class CreateReviewEvent
{
    use SerializesModels;
    public $services;
    public $review;

    public function __construct($services, $review)
    {
        $this->services = $services;
        $this->review = $review;
    }
}