From 97a6699ff3185b42dcf52eb27a455832aa5e1e99 Mon Sep 17 00:00:00 2001 From: Thomas Kerin Date: Sun, 16 Dec 2018 21:50:47 +0100 Subject: [PATCH] ScriptFactory:: should be protected if we're using static --- src/Script/ScriptFactory.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Script/ScriptFactory.php b/src/Script/ScriptFactory.php index ccbb58c2a..0805bc266 100644 --- a/src/Script/ScriptFactory.php +++ b/src/Script/ScriptFactory.php @@ -22,7 +22,11 @@ class ScriptFactory * @var OutputScriptFactory */ private static $outputScriptFactory = null; - private static $opcodes = null; + + /** + * @var Opcodes|null + */ + protected static $opcodes = null; private static function getOpCodes(): Opcodes {