for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Luminark\Rivet\Events;
use Luminark\Rivet\Models\Rivet;
class MovedRivetFile
{
public $rivet;
public $filePath;
public function __construct(Rivet $rivet, $filePath)
$this->rivet = $rivet;
$this->filePath = $filePath;
}