1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25:
<?php
/**
* @author stev leibelt <artodeto@bazzline.net>
* @since 2014-05-26
*/
namespace Net\Bazzline\Component\Locator\Configuration\Assembler;
use Net\Bazzline\Component\Locator\Configuration\Configuration;
/**
* Interface AssemblerInterface
* @package Net\Bazzline\Component\Locator\Configuration\Assembler
*/
interface AssemblerInterface
{
/**
* @param mixed $data
* @param Configuration $configuration
* @throws InvalidArgumentException
* @throws RuntimeException
* @return Configuration
*/
public function assemble($data, Configuration $configuration);
}