Completed
Push — master ( 5e9262...9aff98 )
by Jacob
03:11
created
public/waterfalls/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 $namespace = 'portfolio';
4
-require_once __DIR__ . '/../../bootstrap.php';
4
+require_once __DIR__.'/../../bootstrap.php';
5 5
 
6 6
 // route
7 7
 Loader::loadInstance('router', 'Router');
Please login to merge, or discard this patch.
public/lifestream/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 $namespace = 'portfolio';
4
-require_once __DIR__ . '/../../bootstrap.php';
4
+require_once __DIR__.'/../../bootstrap.php';
5 5
 
6 6
 // route
7 7
 Loader::loadInstance('router', 'Router');
Please login to merge, or discard this patch.
src/Domain/Comment/Comment/CommentRepositoryInterface.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Jacobemerick\Web\Domain\Comment\Comment;
4 4
 
5
-interface CommentRepositoryInterface
6
-{
5
+interface CommentRepositoryInterface
6
+{
7 7
     public function createComment(array $comment);
8 8
     public function getComment($commentId);
9 9
     public function getComments($domain = null, $path = null, $page = null, $perPage = null, $order = null);
Please login to merge, or discard this patch.
src/Domain/Comment/Commenter/CommenterRepositoryInterface.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Jacobemerick\Web\Domain\Comment\Commenter;
4 4
 
5
-interface CommenterRepositoryInterface
6
-{
5
+interface CommenterRepositoryInterface
6
+{
7 7
     public function createCommenter(array $commenter);
8 8
     public function getCommenter($commenterId);
9 9
     public function getCommenters($page = null, $perPage = null);
Please login to merge, or discard this patch.
src/Domain/Waterfall/County/CountyRepositoryInterface.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Jacobemerick\Web\Domain\Waterfall\County;
4 4
 
5
-interface CountyRepositoryInterface
6
-{
5
+interface CountyRepositoryInterface
6
+{
7 7
     public function getCountyList();
8 8
 }
Please login to merge, or discard this patch.
src/Domain/Waterfall/Period/PeriodRepositoryInterface.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Jacobemerick\Web\Domain\Waterfall\Period;
4 4
 
5
-interface PeriodRepositoryInterface
6
-{
5
+interface PeriodRepositoryInterface
6
+{
7 7
     public function getPeriodList();
8 8
 }
Please login to merge, or discard this patch.
src/Domain/Waterfall/Watercourse/WatercourseRepositoryInterface.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Jacobemerick\Web\Domain\Waterfall\Watercourse;
4 4
 
5
-interface WatercourseRepositoryInterface
6
-{
5
+interface WatercourseRepositoryInterface
6
+{
7 7
     public function getWatercourseList();
8 8
 }
Please login to merge, or discard this patch.
src/Domain/Waterfall/Companion/CompanionRepositoryInterface.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Jacobemerick\Web\Domain\Waterfall\Companion;
4 4
 
5
-interface CompanionRepositoryInterface
6
-{
5
+interface CompanionRepositoryInterface
6
+{
7 7
     public function getCompanionList();
8 8
 }
Please login to merge, or discard this patch.
src/Domain/Blog/Series/SeriesRepositoryInterface.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Jacobemerick\Web\Domain\Blog\Series;
4 4
 
5
-interface SeriesRepositoryInterface
6
-{
5
+interface SeriesRepositoryInterface
6
+{
7 7
     public function getSeriesForPost($post);
8 8
 }
Please login to merge, or discard this patch.