<?php /* Please see the README and LICENSE files. */ /** * Commands which can be executed */ interface Command { public function run($subject); } ?>