mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-08 02:38:09 +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();
|
|
}
|
|
}
|