for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Ray\Di;
/**
* @codeCoverageIgnore
*/
final class NullDependency implements DependencyInterface
{
* {@inheritdoc}
public function __toString(): string
return '';
}
*
* @return void
public function inject(Container $container)
public function register(array &$container, Bind $bind)
$container[(string) $bind] = $bind->getBound();
public function setScope($scope)