Example #1
0
 /**
  * Returns whether or not this column has a platform adapter.
  *
  * @return boolean
  */
 public function hasPlatform()
 {
     if (null === $this->parentTable) {
         return false;
     }
     return $this->parentTable->getPlatform() ? true : false;
 }
 /**
  * Returns the PlatformInterface instance.
  *
  * @return PlatformInterface
  */
 private function getPlatform()
 {
     return $this->parentTable->getPlatform();
 }