Skip to content

Commit

Permalink
atualizacao do crudbuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Morais authored and Bruno Morais committed Feb 22, 2024
1 parent f067883 commit 05a49e3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/ModelAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#[\AllowDynamicProperties]
abstract class ModelAbstract
{
protected array $dataModelArray = [];
private array $dataModelArray = [];

/**
* @param array|null $params
Expand Down Expand Up @@ -66,6 +66,13 @@ function __isset($isset) {
return $result;
}

/**
* @return array
*/
public function getDataModelArray():array {
return $this->dataModelArray;
}

/**
* @param array $params
* @return void
Expand Down

0 comments on commit 05a49e3

Please sign in to comment.