Illuminate\Database\Eloquent\Model::updated PHP Méthode

updated() public static méthode

Register an updated model event with the dispatcher.
public static updated ( Closure | string $callback, integer $priority ) : void
$callback Closure | string
$priority integer
Résultat void
    public static function updated($callback, $priority = 0)
    {
        static::registerModelEvent('updated', $callback, $priority);
    }
Model