Skip to content

Commit

Permalink
amélioration de la présentation syntaxique
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgu74 committed Sep 27, 2013
1 parent 118063a commit d6a5f0c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Payutc/Bom/Payline.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,11 @@ public function notification($token) {
$qb = Dbal::createQueryBuilder();
$qb->select('pay_step', 'pay_id', 'usr_id')
->from('t_paybox_pay', 'pay')
->where('pay.pay_token = :token')->setParameter('token', $token);
->where('pay.pay_token = :token')
->setParameter('token', $token);

$result = $qb->execute()->fetch();
if($result['pay_step'] != "W") {
if($result['pay_step'] != "W") {
// ERROR ! Ce rechargement n'est pas en attente.
// Tentative de double rechargement ?
Log::warning("PAYLINE : Tentative de double rechargement ! $token \n".print_r($response, true),10);
Expand Down

0 comments on commit d6a5f0c

Please sign in to comment.