Models
This commit is contained in:
20
src/Currency.php
Normal file
20
src/Currency.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
namespace ProVM\Money;
|
||||
|
||||
use ProVM\Common\Alias\Model;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property string $code
|
||||
* @property string $name
|
||||
*/
|
||||
class Currency extends Model {
|
||||
public static $_table = 'currencies';
|
||||
|
||||
protected $values;
|
||||
public function values(): ?array {
|
||||
if ($this->values === null) {
|
||||
$this->values = $this->parentOf(Value::class, [Model::CHILD_KEY => 'currency_id']);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user