mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06: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();
|
|
}
|
|
}
|