PHP Интерфейс Flarum\Core\Post\MergeableInterface

This is only implemented by certain types of posts. For example, if a "discussion renamed" post is posted immediately after another "discussion renamed" post, then the new one will be merged into the old one.
Показать файл Открыть проект

Открытые методы

Метод Описание
saveAfter ( Post $previous = null ) : Post Save the model, given that it is going to appear immediately after the passed model.

Описание методов

saveAfter() публичный Метод

Save the model, given that it is going to appear immediately after the passed model.
public saveAfter ( Post $previous = null ) : Post
$previous Flarum\Core\Post
Результат Flarum\Core\Post The model resulting after the merge. If the merge is unsuccessful, this should be the current model instance. Otherwise, it should be the model that was merged into.