Skip to content

Commit

Permalink
Fix phpcs errors
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Izewski <[email protected]>
  • Loading branch information
Michal Izewski committed May 7, 2024
1 parent 55400eb commit 9a76d8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/CacheSessionPersistenceIntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ public function testThatAChangedSessionWillNotCauseRegenerationAndASetCookieHead
$item = $this->cache->getItem('foo');
$value = $item->get();
self::assertSame([
'foo' => 'bar',
'something' => 'groovy'
],$value, 'The session data should have been updated');
'foo' => 'bar',
'something' => 'groovy',
], $value, 'The session data should have been updated');
}
}

0 comments on commit 9a76d8c

Please sign in to comment.