コード例 #1
0
 /**
  * @inheritdoc
  */
 public function toWindows()
 {
     $result = array();
     foreach ($this->getInput() as $row) {
         $rowConverter = new Converter($row, $this->getBaseEncodings());
         $result[] = $rowConverter->toWindows();
     }
     return $result;
 }