NFePHP\NFe\MakeNFe::tagCEST PHP Метод

tagCEST() публичный Метод

vide NT2015.003
public tagCEST ( string $nItem = '', string $texto = '' ) : DOMElement
$nItem string
$texto string
Результат DOMElement
    public function tagCEST($nItem = '', $texto = '')
    {
        if ($texto == '') {
            return '';
        }
        $cest = $this->dom->createElement("CEST", $texto);
        $this->aCest[$nItem][] = $cest;
        return $cest;
    }

Usage Example

Пример #1
0
 /**
  * i05cEntity
  * Cria a tag CEST
  *
  * @param array $aCampos
  */
 protected function i05cEntity($aCampos)
 {
     //I05C|CEST
     $this->make->tagCEST($this->nItem, $aCampos[1]);
 }
All Usage Examples Of NFePHP\NFe\MakeNFe::tagCEST