Skip to content

Commit 6c88707

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/dba-mapping-rework' into dba-mapping-rework
2 parents 4e6cd2b + 8340c87 commit 6c88707

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/dba/AbstractModelFactory.class.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace DBA;
44

5-
use JsonSchema\Constraints\Drafts\Draft06\AnyOfConstraint;
65
use MassUpdateSet;
76
use PDO, PDOStatement, PDOException;
87
use UI;

src/dba/Util.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static function cast($obj, $to_class) {
3737
public static function createPrefixedString(string $table, array $keys): string {
3838
$arr = array();
3939
foreach ($keys as $key) {
40-
$arr[] = "$table.$key AS '$table.$key'";
40+
$arr[] = "$table.$key AS $table.$key";
4141
}
4242
return implode(", ", $arr);
4343
}

0 commit comments

Comments
 (0)