1
0
mirror of https://github.com/flarum/core.git synced 2025-10-19 10:46:06 +02:00

Remove deprecated code from beta 16 (#2705)

This commit is contained in:
Alexander Skvortsov
2021-03-19 14:13:50 -04:00
committed by GitHub
parent 374189d48e
commit 908d087e00
40 changed files with 59 additions and 689 deletions

View File

@@ -1,21 +0,0 @@
<?php
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
namespace Flarum\Post\Filter;
/**
* @deprecated beta 16, remove beta 17. Use AuthorFilter instead.
*/
class UserFilter extends AuthorFilter
{
public function getFilterKey(): string
{
return 'user';
}
}