Skip to content

Commit 0ea929a

Browse files
committed
Fix constant builder
1 parent 0772db6 commit 0ea929a

File tree

1 file changed

+1
-1
lines changed
  • lib/vendor/propel-generator/classes/propel/engine/builder/om

1 file changed

+1
-1
lines changed

lib/vendor/propel-generator/classes/propel/engine/builder/om/OMBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ public function getColumnConstant($col, $phpName = null)
375375
} else {
376376
$const = strtoupper($col->getName());
377377
}
378-
return $classname.'::'.$const;
378+
return 'Base' . $classname.'::'.$const;
379379
}
380380

381381
/**

0 commit comments

Comments
 (0)