Merge pull request #8 from flarum/analysis-XlKy2k

Applied fixes from StyleCI
This commit is contained in:
Toby Zerner 2016-02-26 14:27:28 +10:30
commit 2582174bae
8 changed files with 16 additions and 9 deletions

View File

@ -21,4 +21,4 @@ return function (Dispatcher $events, Factory $views) {
$events->subscribe(Listener\SendNotificationWhenReplyIsPosted::class);
$views->addNamespace('flarum-subscriptions', __DIR__.'/views');
};
};

View File

@ -1,4 +1,5 @@
<?php
<?php
/*
* This file is part of Flarum.
*

View File

@ -1,4 +1,5 @@
<?php
<?php
/*
* This file is part of Flarum.
*

View File

@ -1,4 +1,5 @@
<?php
<?php
/*
* This file is part of Flarum.
*

View File

@ -1,4 +1,5 @@
<?php
<?php
/*
* This file is part of Flarum.
*

View File

@ -1,4 +1,5 @@
<?php
<?php
/*
* This file is part of Flarum.
*

View File

@ -1,4 +1,5 @@
<?php
<?php
/*
* This file is part of Flarum.
*

View File

@ -1,4 +1,5 @@
<?php
<?php
/*
* This file is part of Flarum.
*
@ -11,9 +12,9 @@
namespace Flarum\Subscriptions\Notification;
use Flarum\Core\Discussion;
use Flarum\Core\Post;
use Flarum\Core\Notification\BlueprintInterface;
use Flarum\Core\Notification\MailableInterface;
use Flarum\Core\Post;
class NewPostBlueprint implements BlueprintInterface, MailableInterface
{