From 2a5c55c89f65e71df2a674bd0f93ceb9e51c1e21 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Mon, 6 Feb 2017 19:02:10 +0000 Subject: [PATCH] Fix PHP 5.6 support --- app/Bus/Handlers/Events/ActionStorageHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Bus/Handlers/Events/ActionStorageHandler.php b/app/Bus/Handlers/Events/ActionStorageHandler.php index 1d502d79..3ccc7a0f 100644 --- a/app/Bus/Handlers/Events/ActionStorageHandler.php +++ b/app/Bus/Handlers/Events/ActionStorageHandler.php @@ -40,7 +40,7 @@ class ActionStorageHandler 'description' => $data['description'], ]; - if ($data['information'] ?? null) { + if (isset($data['information'])) { $action['information'] = $data['information']; }