Match save method signature in Theme Export/Import
This commit is contained in:
parent
61af6384d2
commit
5723cd4b2a
|
|
@ -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'));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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'));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue