/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
wp-migrate-db
/
class
/
Common
/
DryRun
/
Upload File
HOME
<?php namespace DeliciousBrains\WPMDB\Common\DryRun; interface PersistenceInterface { /** * @param DiffGroup $group * * @return mixed */ public function add(DiffGroup $group); /** * @param array $options * * @return DiffGroup[] */ public function retrieve($options = []); public function store(); }