Skip to content

Commit

Permalink
Fix param type
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Jun 3, 2019
1 parent bd64205 commit 225665e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/MetaLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -275,10 +275,10 @@ private function addCachedMetadata(array $source)
* Store caching state data for a source
*
* @param array $source
* @param array $responseHeaders
* @param array|null $responseHeaders
* @return void
*/
private function saveState(array $source, array $responseHeaders)
private function saveState(array $source, $responseHeaders)
{
if (isset($source['conditionalGET']) && $source['conditionalGET']) {
// Headers section
Expand Down

0 comments on commit 225665e

Please sign in to comment.