Ejemplo n.º 1
0
 /**
  * Parse class aliases from serialized string
  *
  * @param string $string
  * @return array
  */
 protected function _parseSerializedString($string)
 {
     if ($string && preg_match_all($this->_migrationData->getSerializedFindPattern(), $string, $matches)) {
         unset($matches[0], $matches[1], $matches[2]);
         return $matches;
     } else {
         return [];
     }
 }