Skip to content

Commit

Permalink
ScriptFactory:: should be protected if we're using static
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Kerin committed Dec 16, 2018
1 parent 7657b69 commit 97a6699
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Script/ScriptFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit 97a6699

Please sign in to comment.