Merge pull request #17 from flarum/analysis-8646ko

Applied fixes from StyleCI
This commit is contained in:
Toby Zerner 2016-02-26 14:27:02 +10:30
commit 6a9391d02e
7 changed files with 17 additions and 10 deletions

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.
*
@ -10,9 +11,9 @@
namespace Flarum\Mentions\Notification;
use Flarum\Core\Post;
use Flarum\Core\Notification\BlueprintInterface;
use Flarum\Core\Notification\MailableInterface;
use Flarum\Core\Post;
class PostMentionedBlueprint implements BlueprintInterface, MailableInterface
{

View File

@ -1,4 +1,5 @@
<?php
<?php
/*
* This file is part of Flarum.
*
@ -10,9 +11,9 @@
namespace Flarum\Mentions\Notification;
use Flarum\Core\Post;
use Flarum\Core\Notification\BlueprintInterface;
use Flarum\Core\Notification\MailableInterface;
use Flarum\Core\Post;
class UserMentionedBlueprint implements BlueprintInterface, MailableInterface
{
@ -50,7 +51,7 @@ class UserMentionedBlueprint implements BlueprintInterface, MailableInterface
*/
public function getData()
{
return null;
return;
}
/**