Skip to content

Commit e929fe1

Browse files
committed
Merge branch 'l12' of github.com:TappNetwork/laravel-airtables into l12
2 parents a0694f7 + 4267612 commit e929fe1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/Airtable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public function updateOrCreate(array $idData, array $updateData = [])
165165
if ($results->isNotEmpty()) {
166166
$item = $results->first();
167167

168-
//update
168+
// update
169169
return $this->update($item['id'], $updateData);
170170
}
171171

tests/Feature/ClientTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function it_can_search()
6060
/** @test */
6161
public function it_can_sort_asc()
6262
{
63-
//Ascending sort
63+
// Ascending sort
6464
$expectedResponseAsc = [
6565
[
6666
'id' => 0,
@@ -90,7 +90,7 @@ public function it_can_sort_asc()
9090
/** @test */
9191
public function it_can_sort_desc()
9292
{
93-
//Descending sort
93+
// Descending sort
9494
$expectedResponseDesc = [
9595
[
9696
'id' => 1,

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class TestCase extends \Orchestra\Testbench\TestCase
99
{
10-
public function setUp(): void
10+
protected function setUp(): void
1111
{
1212
parent::setUp();
1313
// additional setup

tests/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
if (! class_exists(Dotenv::class)) {
99
throw new \RuntimeException('APP_ENV environment variable is not defined. You need to define environment variables for configuration or add "symfony/dotenv" as a Composer dependency to load variables from a .env file.');
1010
}
11-
(new Dotenv())->load(__DIR__.'/../.env');
11+
(new Dotenv)->load(__DIR__.'/../.env');
1212
}

0 commit comments

Comments
 (0)