1 <?php
2
3 namespace Balance\Model;
4
5 /**
6 * Tipo de Entrada de Lançamento
7 */
8 class EntryType
9 {
10 const CREDIT = 'CREDIT';
11 const DEBIT = 'DEBIT';
12
13 /**
14 * Definição de Tipo de Entrada de Lançamento
15 *
16 * @return string[] Definição
17 */
18 public function getDefinition()
19 {
20 return array(
21 self::CREDIT => 'Crédito',
22 self::DEBIT => 'Débito',
23 );
24 }
25 }
26