From 6ac6e0dbe08776601bb3afe845e68e6cac470a97 Mon Sep 17 00:00:00 2001 From: marijn deploys Date: Tue, 3 Apr 2018 11:56:45 +0200 Subject: [PATCH 1/2] Add 'multilingual' to list of exportFileActions --- src/Onesky/Api/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Onesky/Api/Client.php b/src/Onesky/Api/Client.php index 7c71418..02bb180 100644 --- a/src/Onesky/Api/Client.php +++ b/src/Onesky/Api/Client.php @@ -95,7 +95,7 @@ class Client * Actions to use multipart to upload file */ protected $exportFileActions = array( - 'translations' => array('export'), + 'translations' => array('export', 'multilingual'), ); /** From c481bc248ccac2b1300b08ed673dc7f5e6ecf3ae Mon Sep 17 00:00:00 2001 From: marijn deploys Date: Mon, 30 Apr 2018 13:33:10 +0200 Subject: [PATCH 2/2] Always add trailing commas. Mainly to bump CI --- src/Onesky/Api/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Onesky/Api/Client.php b/src/Onesky/Api/Client.php index 02bb180..b095a4f 100644 --- a/src/Onesky/Api/Client.php +++ b/src/Onesky/Api/Client.php @@ -95,7 +95,7 @@ class Client * Actions to use multipart to upload file */ protected $exportFileActions = array( - 'translations' => array('export', 'multilingual'), + 'translations' => array('export', 'multilingual',), ); /**