diff --git a/console/controllers/FeedController.php b/console/controllers/FeedController.php index 635c072..e21306c 100644 --- a/console/controllers/FeedController.php +++ b/console/controllers/FeedController.php @@ -59,7 +59,12 @@ class FeedController extends Controller $handle = fopen($dirName .'/'. $filename, "w"); - $content[] = ['ID', 'ID2', 'Item Category', 'Item title', 'Item description', 'Price']; + $content = array ( + array('aaa', 'bbb', 'ccc', 'dddd'), + array('123', '456', '789'), + array('"aaa"', '"bbb"') + ); + //$content[] = ['ID', 'ID2', 'Item Category', 'Item title', 'Item description', 'Price']; //$content[] = ['ID', 'ID2', 'Item Category', 'Item title', 'Item description', 'Price']; // foreach ($this->getProducts() as $product) { -- libgit2 0.21.4