From 78e2862e3b721e0e120b7df91375dd5a34efaa76 Mon Sep 17 00:00:00 2001 From: Ilya Shaydullin Date: Mon, 7 May 2018 17:12:21 +0700 Subject: [PATCH] Fix is null condition (cherry picked from commit 06490ca) --- src/Executor/Executor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Executor/Executor.php b/src/Executor/Executor.php index 702e033..97d3ae3 100644 --- a/src/Executor/Executor.php +++ b/src/Executor/Executor.php @@ -311,7 +311,7 @@ class Executor return null; }) ->then(function ($data) { - if ($data === null){ + if ($data !== null){ $data = (array) $data; } return new ExecutionResult($data, $this->exeContext->errors);