1
0
mirror of https://github.com/flarum/core.git synced 2025-08-12 03:14:33 +02:00

Applied fixes from StyleCI

This commit is contained in:
Toby Zerner
2016-02-25 22:51:14 -05:00
committed by StyleCI Bot
parent 048bc884ff
commit 3e01c2fee9
7 changed files with 16 additions and 9 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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