Skip to content

Commit

Permalink
Merge pull request #37 from LeaseWeb/bugfix/fix-php-53-support
Browse files Browse the repository at this point in the history
Fix PHP 5.3 support
  • Loading branch information
GabrielAnca authored Feb 8, 2018
2 parents 60f2a46 + 976e582 commit dcd3c09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DataCollector/ApiCallDataCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ public function getName()
}

/**
* Support Symfony 3.4
* {@inheritdoc}
*/
public function reset()
{
$this->data = [];
$this->data = array();
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ It is easy to use from the code and is aimed to have full debugging capabilities
## Requirements

* PHP 5.3 with curl support
* Symfony 2.1
* Symfony >= 2.1

## Installation

Expand Down

0 comments on commit dcd3c09

Please sign in to comment.