Skip to content

Commit

Permalink
Atualizando o README
Browse files Browse the repository at this point in the history
  • Loading branch information
bissolli committed May 6, 2017
1 parent 010803d commit 1b5e30b
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ $document->isValid();
// Retorna o número de CPF formatado (###.###.###-##)
// ou false caso não seja um número válido
$document->format();

// Retorna o número de sem formatação alguma
// ou false caso não seja um número válido
$document->getValue();
```


Expand All @@ -39,6 +43,10 @@ $document->isValid();
// Retorna o número de CNPJ formatado (##.###.###/####-##)
// ou false caso não seja um número válido
$document->format();

// Retorna o número de sem formatação alguma
// ou false caso não seja um número válido
$document->getValue();
```


Expand All @@ -58,6 +66,10 @@ $document->isValid();
// Retorna o número de formatado de acordo com tipo de documento informado
// ou false caso não seja um número válido
$document->format();

// Retorna o número de sem formatação alguma
// ou false caso não seja um número válido
$document->getValue();
```

Simples assim!
10 changes: 10 additions & 0 deletions src/CNPJ.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,14 @@ public function getClassName()
{
return 'CNPJ';
}

/**
* Get the raw value
*
* @return string
*/
public function getValue()
{
return $this->value;
}
}
10 changes: 10 additions & 0 deletions src/CPF.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,14 @@ public function getClassName()
{
return 'CPF';
}

/**
* Get the raw value
*
* @return string
*/
public function getValue()
{
return $this->value;
}
}
10 changes: 10 additions & 0 deletions src/Documento.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,14 @@ public function format()
{
return $this->obj->format();
}

/**
* Get the raw value
*
* @return string
*/
public function getValue()
{
return $this->obj->getValue();
}
}

0 comments on commit 1b5e30b

Please sign in to comment.