Skip to content

Commit 56c01ae

Browse files
author
Dave MacFarlane
committed
Update test
1 parent b3fee3d commit 56c01ae

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

modules/timepoint_list/test/TimepointListIntegrationTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class TimepointListIntegrationTest extends LorisIntegrationTestWithCandidate
4141
'',
4242
'',
4343
'',
44+
'Unknown',
4445
];
4546

4647
/**

php/libraries/Language.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
/**
44
* A Language object represents the concept of a language that has been
55
* configured on this LORIS instance.
6+
*
7+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GPLv3
68
*/
79
class Language
810
{
@@ -16,6 +18,7 @@ class Language
1618
*/
1719
public function __construct(
1820
public readonly string $label,
19-
public readonly string $code
20-
) { }
21+
public readonly string $code
22+
) {
23+
}
2124
}

0 commit comments

Comments
 (0)