for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Luminark\Rivet\Events;
use Illuminate\Database\Eloquent\Model;
use Luminark\Rivet\Models\Rivet;
abstract class AbstractAttachingEvent
{
public $model;
public $collection;
public $rivet;
public function __construct(Model $model, $collection, Rivet $rivet)
$this->model = $model;
$this->collection = $collection;
$this->rivet = $rivet;
}