errant/tacit

View on GitHub
src/Instruction/Command/Wtf.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php 
namespace Tacit\Instruction\Command;
/**
 * Wait For
 *
 * @author Tom Morton
 */
class Wtf extends \Tacit\Instruction {

    public $command = 'WTF';

    public function execute($vm)
    {
        $vm->suspend();
    }
}