Skip to content

Commit 802e2a8

Browse files
Fix indentation
1 parent e4aac69 commit 802e2a8

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

src/Antoineaugusti/LaravelSentimentAnalysis/Facades/SentimentAnalysis.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
class SentimentAnalysis extends Facade
66
{
7-
/**
8-
* Get the registered name of the component.
9-
*
10-
* @return string
11-
*/
12-
protected static function getFacadeAccessor() { return 'sentimentanalysis'; }
7+
/**
8+
* Get the registered name of the component.
9+
*
10+
* @return string
11+
*/
12+
protected static function getFacadeAccessor() { return 'sentimentanalysis'; }
1313

1414
}

src/Antoineaugusti/LaravelSentimentAnalysis/LaravelSentimentAnalysisServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ public function boot()
2929
public function register()
3030
{
3131
$this->app['sentimentanalysis'] = $this->app->share(function($app) {
32-
return new SentimentAnalysis;
33-
});
32+
return new SentimentAnalysis;
33+
});
3434
}
3535

3636
/**

tests/LaravelSentimentAnalysis/SentimentAnalysisTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ class SentimentAnalysisTest extends PHPUnit_Framework_TestCase {
66
public $sentiment;
77

88
public function setUp()
9-
{
10-
parent::setUp();
9+
{
10+
parent::setUp();
1111

12-
$this->sentiment = new SentimentAnalysis;
13-
}
12+
$this->sentiment = new SentimentAnalysis;
13+
}
1414

1515
public function testIsPositive()
1616
{

0 commit comments

Comments
 (0)