We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7657b69 commit ec24391Copy full SHA for ec24391
src/Script/ScriptFactory.php
@@ -22,9 +22,13 @@ class ScriptFactory
22
* @var OutputScriptFactory
23
*/
24
private static $outputScriptFactory = null;
25
- private static $opcodes = null;
26
27
- private static function getOpCodes(): Opcodes
+ /**
+ * @var Opcodes|null
28
+ */
29
+ protected static $opcodes = null;
30
+
31
+ public static function getOpCodes(): Opcodes
32
{
33
if (null === static::$opcodes) {
34
static::$opcodes = new Opcodes();
0 commit comments