1
0
mirror of https://github.com/flarum/core.git synced 2025-08-07 08:56:38 +02:00

Apply fixes from StyleCI

This commit is contained in:
Alexander Skvortsov
2021-03-13 21:33:02 +00:00
committed by StyleCI Bot
parent 58fa8d4b8c
commit 2da4f8204e
2 changed files with 4 additions and 3 deletions

View File

@@ -19,9 +19,9 @@ use Flarum\Post\Event\Hidden;
use Flarum\Post\Event\Posted; use Flarum\Post\Event\Posted;
use Flarum\Post\Event\Restored; use Flarum\Post\Event\Restored;
use Flarum\Subscriptions\HideIgnoredFromAllDiscussionsPage; use Flarum\Subscriptions\HideIgnoredFromAllDiscussionsPage;
use Flarum\Subscriptions\Query\SubscriptionFilterGambit;
use Flarum\Subscriptions\Listener; use Flarum\Subscriptions\Listener;
use Flarum\Subscriptions\Notification\NewPostBlueprint; use Flarum\Subscriptions\Notification\NewPostBlueprint;
use Flarum\Subscriptions\Query\SubscriptionFilterGambit;
return [ return [
(new Extend\Frontend('forum')) (new Extend\Frontend('forum'))

View File

@@ -18,7 +18,8 @@ use Illuminate\Database\Query\Builder;
class SubscriptionFilterGambit extends AbstractRegexGambit implements FilterInterface class SubscriptionFilterGambit extends AbstractRegexGambit implements FilterInterface
{ {
protected function getGambitPattern() { protected function getGambitPattern()
{
return 'is:(follow|ignor)(?:ing|ed)'; return 'is:(follow|ignor)(?:ing|ed)';
} }
@@ -34,7 +35,7 @@ class SubscriptionFilterGambit extends AbstractRegexGambit implements FilterInte
public function filter(FilterState $filterState, string $filterValue, bool $negate) public function filter(FilterState $filterState, string $filterValue, bool $negate)
{ {
preg_match('/^' . $this->getGambitPattern().'$/i', 'is:'.$filterValue, $matches); preg_match('/^'.$this->getGambitPattern().'$/i', 'is:'.$filterValue, $matches);
$this->constrain($filterState->getQuery(), $filterState->getActor(), $matches[1], $negate); $this->constrain($filterState->getQuery(), $filterState->getActor(), $matches[1], $negate);
} }