Created
March 25, 2018 13:59
-
-
Save geomagilles/3893847be83ca6862d6ab1cea152741f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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