15 lines
202 B
PHP
15 lines
202 B
PHP
<?php
|
|
|
|
namespace NoccyLabs\Shell\AutoComplete;
|
|
|
|
class Hinter implement HinterInterface
|
|
{
|
|
public function getHints()
|
|
{
|
|
}
|
|
|
|
public function addHinter(HinterInterface $hinter)
|
|
{
|
|
}
|
|
}
|