1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-01 00:16:55 +01:00
Thomas Zilio 18e3a4f6ef Stile del codice
Vengono rimossi alcun commenti PHPDoc poichè il codice presenta parzialmente la tipizzazione standard. Da implementare in modo completo con il passaggio a PHP => 7.
2020-02-11 11:43:59 +01:00

26 lines
423 B
PHP

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