Skip to content

Commit a3d2d85

Browse files
committed
fix tests
1 parent 85bb8d6 commit a3d2d85

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/PayloadTest.php

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

128-
[$sub, $jti] = $values;
128+
list($sub, $jti) = $values;
129129

130130
$this->assertInternalType('array', $values);
131131
$this->assertSame($sub, 1);

0 commit comments

Comments
 (0)