We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3d2d85 commit c46ec79Copy full SHA for c46ec79
1 file changed
tests/PayloadTest.php
@@ -125,7 +125,8 @@ public function it_should_get_multiple_properties_when_passing_an_array_to_the_g
125
{
126
$values = $this->payload->get(['sub', 'jti']);
127
128
- list($sub, $jti) = $values;
+ $sub = $values[0];
129
+ $jti = $values[1];
130
131
$this->assertInternalType('array', $values);
132
$this->assertSame($sub, 1);
0 commit comments