openstamanager/update/v2_4_10/Riga.php

27 lines
422 B
PHP
Raw Normal View History

<?php
namespace Update\v2_4_10;
use Common\Components\Row;
class Riga extends Row
{
use RelationTrait;
protected $table = 'co_righe_documenti';
/**
* Crea una nuova riga collegata ad una fattura.
*
* @param Fattura $fattura
*
* @return self
*/
public static function build(Fattura $fattura)
{
$model = parent::build($fattura);
return $model;
}
}