1
0
mirror of https://github.com/flarum/core.git synced 2025-07-23 09:41:26 +02:00

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;
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;