Match save method signature in Theme Export/Import

This commit is contained in:
Ben Thomson 2019-09-05 10:58:22 +08:00
parent 61af6384d2
commit 5723cd4b2a
No known key found for this signature in database
GPG Key ID: BD1BF04E944DBD80
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ class ThemeExport extends Model
*
* @return void
*/
public function save()
public function save(array $options = null, $sessionKey = null)
{
throw new ApplicationException(sprintf("The % model is not intended to be saved, please use %s instead", get_class($this), 'ThemeData'));
}

View File

@ -64,7 +64,7 @@ class ThemeImport extends Model
*
* @return void
*/
public function save()
public function save(array $options = null, $sessionKey = null)
{
throw new ApplicationException(sprintf("The % model is not intended to be saved, please use %s instead", get_class($this), 'ThemeData'));
}