antonioribeiro / health

Laravel Health Panel
BSD 3-Clause "New" or "Revised" License
1.95k stars 196 forks source link

Fix PHP56 support #34

Closed hilgroth closed 7 years ago

hilgroth commented 7 years ago

Replaced PHP7+ syntax: ($this->closure)();

With a PHP56+ compatible syntax: call_user_func($this->closure);