Skip to content
This repository has been archived by the owner on Jan 8, 2021. It is now read-only.

Commit

Permalink
Merge pull request #46 from S3RK/master
Browse files Browse the repository at this point in the history
Fix missing parameters in profiler output.
  • Loading branch information
bjyoungblood committed Aug 5, 2014
2 parents 3368d35 + 2c328a4 commit 890d8b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BjyProfiler/Db/Profiler/Profiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public function getQueryProfiles($queryTypes = null)
public function profilerStart($target)
{
$sql = $target->getSql();
$params = $target->getParameterContainer();
$params = $target->getParameterContainer()->getNamedArray();
$this->startQuery($sql, $params);
}

Expand Down

0 comments on commit 890d8b5

Please sign in to comment.