Skip to content

Commit c46ec79

Browse files
committed
fix tests
1 parent a3d2d85 commit c46ec79

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/PayloadTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ public function it_should_get_multiple_properties_when_passing_an_array_to_the_g
125125
{
126126
$values = $this->payload->get(['sub', 'jti']);
127127

128-
list($sub, $jti) = $values;
128+
$sub = $values[0];
129+
$jti = $values[1];
129130

130131
$this->assertInternalType('array', $values);
131132
$this->assertSame($sub, 1);

0 commit comments

Comments
 (0)