PSR fixes

This commit is contained in:
Martin Konecny 2012-09-05 17:44:09 -04:00
parent 43f5258219
commit 139950fac2

View file

@ -1,6 +1,7 @@
<?php
class Application_Common_Database{
public static function prepareAndExcute($sql, $paramValueMap, $type='all'){
public static function prepareAndExecute($sql, $paramValueMap, $type='all')
{
$con = Propel::getConnection();
$stmt = $con->prepare($sql);
foreach ($paramValueMap as $param => $v) {