for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Knp\RadBundle\Alice;
class ProviderCollection
{
protected $providers;
public function __construct()
$this->providers = array();
}
public function addProvider($provider)
if (!in_array($provider, $this->providers)) {
$this->providers[] = $provider;
return $this;
public function getProviders()
return $this->providers;