Implemented repository mapper, and venta show

This commit is contained in:
Juan Pablo Vial
2023-08-08 23:53:49 -04:00
parent ef30ae67d2
commit 59825259b6
111 changed files with 2766 additions and 612 deletions

View File

@ -3,6 +3,7 @@ namespace Incoviba\Repository;
use Incoviba\Common\Define;
use Incoviba\Common\Ideal;
use Incoviba\Common\Implement;
use Incoviba\Model;
class User extends Ideal\Repository
@ -15,15 +16,8 @@ class User extends Ideal\Repository
public function create(?array $data = null): Define\Model
{
$map = [
'name' => [],
'password' => [],
'enabled' => [
'function' => function($data) {
return $data['enabled'] != 0;
}
]
];
$map = (new Implement\Repository\MapperParser(['name', 'password']))
->register('enabled', new Implement\Repository\Mapper\Boolean('enabled'));
return $this->parseData(new Model\User(), $data, $map);
}