Skip to content

Commit 37bd60a

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 19e971e + d35d73d commit 37bd60a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/EditArrayInFileEditor.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ public function getEditArea()
5858
return $this->_editArea;
5959
}
6060

61+
public function setEditArea($val)
62+
{
63+
$this->_editArea = $val;
64+
}
65+
6166
public function getTargetLines()
6267
{
6368
return array_slice($this->_editArea, 1, count($this->_editArea) - 2, true);
@@ -223,7 +228,7 @@ public function insert($data, $insertType = self::INSERT_TYPE_RAW ){
223228
foreach($items as $key => $val){
224229
if(trim($val) == '') continue;
225230
if(self::endsWith(trim($val), ',')){
226-
$items[$key] = ' '.trim(trim($val), ',').','.PHP_EOL; //
231+
$items[$key] = ' '.trim(trim($val), ',').','.PHP_EOL;
227232
} else {
228233
$items[$key] = ' '.trim(trim($val), ',').PHP_EOL;
229234
}

0 commit comments

Comments
 (0)