/**
  * Gets the basePeer path if specified for table/db.  
  * If not, will return 'propel.util.BasePeer'
  * @return string
  */
 public static function getBasePeer(Table $table) {
     $class = $table->getBasePeer();
     if ($class === null) {
         $class = "propel.util.BasePeer";
     }
     return $class;
 }