diff --git a/src/Events/TableChanged.php b/src/Events/TableChanged.php index 3f8d811650..97fcc22d46 100644 --- a/src/Events/TableChanged.php +++ b/src/Events/TableChanged.php @@ -10,8 +10,11 @@ class TableChanged public $name; - public function __construct($name) + public $changeType; + + public function __construct($name, $changeType) { $this->name = $name; + $this->changeType = $changeType; } }