<?php
namespace spiral\framework\di\fixtures\construction;
use spiral\framework\di\construction\AbstractContainer;
/**
* Mock for abstract Argument construction strategy
*
* @author Alexis Metaireau <hide@address.com>
* @copyright 2009 Spiral-project.org <http://www.spiral-project.org>
* @license GNU General Public License <http://www.gnu.org/licenses/gpl.html>
*/
class MockAbstractcontainer extends AbstractContainer
{
public function getService($key)
{
}
}
?>