Ferreteria/v0.6/clade/Config/Style/@removed/TTY/List
< Ferreteria | v0.6 | clade | Config | Style | @removed | TTY(Redirected from Ferreteria/v0.6/clade/IO/O/Style/TTY/List)
Jump to navigation
Jump to search
|
The item documented here has been removed and is no longer in use.
|
Pages
Code
Entire contents, as deleted on 2026-01-26:
<?php namespace Woozalia\Ferret\IO\O\Style\TTY;
use Woozalia\Ferret\IO\O\Style\caList as BaseClass;
use Woozalia\Ferret\IO\O\Style\iList as BaseIface;
interface iList extends BaseIface {}
abstract class caList extends BaseClass implements iList {
public function ListPrefix() : string { return ''; }
public function ListSuffix() : string { return ''; }
public function ItemPrefix() : string { return ' * '; }
public function ItemSuffix() : string { return CRLF; }
public function IndentText() : string { return ' -'; }
}