php-shell/lib/AutoComplete/Hinter.php
Christopher Vagnetoft e6f6fbe3d3 Initial commit
2016-04-13 03:19:22 +02:00

15 lines
202 B
PHP

<?php
namespace NoccyLabs\Shell\AutoComplete;
class Hinter implement HinterInterface
{
public function getHints()
{
}
public function addHinter(HinterInterface $hinter)
{
}
}