Rename ActivityPost to EventPost

This commit is contained in:
Toby Zerner 2015-05-18 18:47:34 +09:30
parent 1b4b03356a
commit 8e24e7197e
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<?php namespace Flarum\Core\Models;
class DiscussionRenamedPost extends ActivityPost
class DiscussionRenamedPost extends EventPost
{
/**
* The type of post this is, to be stored in the posts table.

View File

@ -1,6 +1,6 @@
<?php namespace Flarum\Core\Models;
abstract class ActivityPost extends Post implements MergeableInterface
abstract class EventPost extends Post implements MergeableInterface
{
use MergeableTrait;