Skip to content
This repository was archived by the owner on Jun 18, 2019. It is now read-only.

Commit 8018718

Browse files
committed
Updated changelog, readme and added assertion so that phpunit won't complaint.
1 parent b50224e commit 8018718

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Version History
22

3+
### v. 8.0
4+
5+
- Added support for Laravel 5.5 #394
6+
37
### v. 7.3
48

59
- Added compatibility with custom db connections. #366

readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ This is a Laravel package for translatable models. Its goal is to remove the com
7272

7373
Laravel | Translatable
7474
:---------|:----------
75+
5.5 | 8.0
7576
5.4 | 7.*
7677
5.3 | 6.*
7778
5.2 | 5.5 - 6.*

tests/TestCoreModelExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public function test_to_array_wont_break_if_no_translations_exist()
160160
{
161161
$country = new Country(['code' => 'test']);
162162
$country->save();
163-
$country->toArray();
163+
$this->assertArrayHasKey('code', $country->toArray());
164164
}
165165

166166
// Forms

0 commit comments

Comments
 (0)