15 lines
307 B
PHP
15 lines
307 B
PHP
<?php
|
|
|
|
interface WPML_ST_Translations_File_Dictionary_Storage {
|
|
|
|
public function save( WPML_ST_Translations_File_Entry $file );
|
|
|
|
/**
|
|
* @param null|string $path
|
|
* @param null|string $status
|
|
*
|
|
* @return WPML_ST_Translations_File_Entry[]
|
|
*/
|
|
public function find( $path = null, $status = null );
|
|
}
|