errant/tacit

View on GitHub
src/Instruction.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Tacit;
class Instruction {

    public $command;

    public function execute($vm) 
    {

    }

    public function compile(&$bytestream, $byte, $command)
    {
        $bytestream[] = $byte;
    }
}