diff options
Diffstat (limited to 'plugins/jetpack/sync/interface.jetpack-sync-codec.php')
-rw-r--r-- | plugins/jetpack/sync/interface.jetpack-sync-codec.php | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/plugins/jetpack/sync/interface.jetpack-sync-codec.php b/plugins/jetpack/sync/interface.jetpack-sync-codec.php deleted file mode 100644 index 1405d90c..00000000 --- a/plugins/jetpack/sync/interface.jetpack-sync-codec.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -/** - * Very simple interface for encoding and decoding input - * This is used to provide compression and serialization to messages - **/ -interface iJetpack_Sync_Codec { - // we send this with the payload so we can select the appropriate decoder at the other end - public function name(); - - public function encode( $object ); - - public function decode( $input ); -} |