mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-07 10:28:22 +00:00
15 lines
226 B
PHP
15 lines
226 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
class Elegant extends Eloquent
|
||
|
|
{
|
||
|
|
public static $rules = [];
|
||
|
|
|
||
|
|
public function isValid()
|
||
|
|
{
|
||
|
|
return Validator::make(
|
||
|
|
$this->toArray(),
|
||
|
|
$this::$rules
|
||
|
|
)->passes();
|
||
|
|
}
|
||
|
|
}
|