Skip to content

Instantly share code, notes, and snippets.

@geomagilles
Created March 25, 2018 13:59
Show Gist options
  • Save geomagilles/3893847be83ca6862d6ab1cea152741f to your computer and use it in GitHub Desktop.
Save geomagilles/3893847be83ca6862d6ab1cea152741f to your computer and use it in GitHub Desktop.
<?php
use Zenaton\Interfaces\EventInterface;
class EtaUpdatedEvent implements EventInterface
{
public $eta;
public function __construct($eta)
{
$this->eta = $eta;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment