Completed
Branch master (3bfe67)
by satoru
05:15
created
src/Controller/Component/CsvExportComponent.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -98,6 +98,10 @@
 block discarded – undo
98 98
      * @param $v 変換する値
99 99
      * @delimiter 区切り文字
100 100
      */
101
+
102
+    /**
103
+     * @param string $delimiter
104
+     */
101 105
     function _parseCsv($v, $delimiter) {
102 106
         //区切り文字・改行・ダブルクオートの時
103 107
         if (preg_match('/[' . $delimiter . '\\n"]/', $v)) {
Please login to merge, or discard this patch.
src/Form/CsvImportForm.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -69,6 +69,7 @@
 block discarded – undo
69 69
      * @author hagiwara
70 70
      *
71 71
      * @see http://yossy.iimp.jp/wp/?p=56
72
+     * @param integer $length
72 73
      * @return array
73 74
      */
74 75
     function fgetcsv_reg (&$handle, $length = null, $d = ',', $e = '"') {
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace CsvCombine\Form;
4 4
 
5
-use Cake\Form\Form;
6
-use Cake\Form\Schema;
7
-use Cake\Validation\Validator;
5
+use Cake\Form\Form;
6
+use Cake\Validation\Validator;
8 7
 use Cake\Utility\Hash;
9 8
 
10 9
 class CsvImportForm extends Form
Please login to merge, or discard this patch.