Ubiquity 2.5.2
php rapid development framework
Loading...
Searching...
No Matches
Repository.php
Go to the documentation of this file.
1<?php
2
4
14 protected string $model;
15
16 public function __construct(string $model) {
17 $this->model = $model;
18 }
19
20 protected function getModel(): string {
21 return $this->model;
22 }
23}
24
A repository for managing CRUD operations on a model.
Ubiquity\orm\repositories$Repository This class is part of Ubiquity.