Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineAugusti committed Aug 20, 2014
1 parent e4aac69 commit 802e2a8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

class SentimentAnalysis extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor() { return 'sentimentanalysis'; }
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor() { return 'sentimentanalysis'; }

}
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public function boot()
public function register()
{
$this->app['sentimentanalysis'] = $this->app->share(function($app) {
return new SentimentAnalysis;
});
return new SentimentAnalysis;
});
}

/**
Expand Down
8 changes: 4 additions & 4 deletions tests/LaravelSentimentAnalysis/SentimentAnalysisTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ class SentimentAnalysisTest extends PHPUnit_Framework_TestCase {
public $sentiment;

public function setUp()
{
parent::setUp();
{
parent::setUp();

$this->sentiment = new SentimentAnalysis;
}
$this->sentiment = new SentimentAnalysis;
}

public function testIsPositive()
{
Expand Down

0 comments on commit 802e2a8

Please sign in to comment.