mirror of
https://github.com/flarum/core.git
synced 2025-10-08 13:36:52 +02:00
7 lines
118 B
PHP
7 lines
118 B
PHP
<?php namespace Flarum\Core\Models;
|
|
|
|
interface MergeableInterface
|
|
{
|
|
public function saveAfter(Model $previous);
|
|
}
|