Ferreteria/v0.6/clade/boot/Screen/Cmd/@removed
Jump to navigation
Jump to search
|
Removed Code
|
2025-01-13
#
// hierarchy
// 2024-10-17 replacing these with Indent classes
protected function IndentIt() : string { return str_repeat(' -',$this->ind); }
public function OpenList() : string { $this->OpenIndent(); return CRLF; }
public function ShutList() : string { $this->ShutIndent(); return ''; }
public function OpenIndent() : string { $this->ind++; return ''; }
public function ShutIndent() : string { $this->ind--; return ''; }
public function ListItem(string $s) : string { return $this->IndentIt().' '.$s.$this->NewLine(); }