Rename ActivityPost to EventPost

This commit is contained in:
Toby Zerner 2015-05-18 18:47:34 +09:30
parent 00be36ad16
commit 6bdf36253c
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<?php namespace Flarum\Core\Models; <?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. * The type of post this is, to be stored in the posts table.

View File

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