for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Veto.
* PHP Microframework.
*
* @author Damien Walsh <[email protected]>
* @copyright Damien Walsh 2013-2014
* @version 0.1
* @package veto
*/
namespace Veto\DependencyInjection;
* Represents an object that can access a service container.
* @since 0.1
abstract class AbstractContainerAccessor
{
* @var Container
protected $container;
* Set the service container.
* @param Container $container
public function setContainer(Container $container)
$this->container = $container;
}