1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22:
<?php
/**
* @author stev leibelt <artodeto@bazzline.net>
* @since 2014-12-21
*/
namespace Net\Bazzline\Component\Locator;
use Net\Bazzline\Component\Locator\Configuration\Instance;
/**
* Interface InstanceDependentInterface
* @package Net\Bazzline\Component\Locator
*/
interface InstanceDependentInterface
{
/**
* @param Instance $instance
* @return $this
*/
public function setInstance(Instance $instance);
}