From ed3dac8a126c7f2df20b9dd214d7e345dc2f7603 Mon Sep 17 00:00:00 2001 From: Darryn Ten Date: Sat, 18 Feb 2017 11:48:36 +0200 Subject: [PATCH] Indentation --- .../GoogleNaturalLanguageTest.php | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/tests/GoogleNaturalLanguagePhp/GoogleNaturalLanguageTest.php b/tests/GoogleNaturalLanguagePhp/GoogleNaturalLanguageTest.php index 255bd71..c23f7fe 100644 --- a/tests/GoogleNaturalLanguagePhp/GoogleNaturalLanguageTest.php +++ b/tests/GoogleNaturalLanguagePhp/GoogleNaturalLanguageTest.php @@ -69,16 +69,16 @@ public function testSet() public function testGetEntities() { $config = [ - 'projectId' => 'project-id', - 'cheapskate' => true, - 'cache' => true, + 'projectId' => 'project-id', + 'cheapskate' => true, + 'cache' => true, ]; $client = m::mock(NaturalLanguageClient::class); $client->shouldReceive('analyzeEntities') - ->once() - ->andReturn(); + ->once() + ->andReturn(); $instance = new GoogleNaturalLanguage($config); @@ -95,16 +95,16 @@ public function testGetEntities() public function testGetSyntax() { $config = [ - 'projectId' => 'project-id', - 'cheapskate' => true, - 'cache' => true, + 'projectId' => 'project-id', + 'cheapskate' => true, + 'cache' => true, ]; $client = m::mock(NaturalLanguageClient::class); $client->shouldReceive('analyzeSyntax') - ->once() - ->andReturn(); + ->once() + ->andReturn(); $instance = new GoogleNaturalLanguage($config); @@ -121,16 +121,16 @@ public function testGetSyntax() public function testGetSentiment() { $config = [ - 'projectId' => 'project-id', - 'cheapskate' => true, - 'cache' => true, + 'projectId' => 'project-id', + 'cheapskate' => true, + 'cache' => true, ]; $client = m::mock(NaturalLanguageClient::class); $client->shouldReceive('analyzeSentiment') - ->once() - ->andReturn(); + ->once() + ->andReturn(); $instance = new GoogleNaturalLanguage($config); @@ -147,16 +147,16 @@ public function testGetSentiment() public function testGetAll() { $config = [ - 'projectId' => 'project-id', - 'cheapskate' => false, - 'cache' => true, + 'projectId' => 'project-id', + 'cheapskate' => false, + 'cache' => true, ]; $client = m::mock(NaturalLanguageClient::class); $client->shouldReceive('annotateText') - ->once() - ->andReturn(); + ->once() + ->andReturn(); $instance = new GoogleNaturalLanguage($config);