for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Monolol\Lolifiers\QuoteProviders;
use Monolol\Lolifiers\QuoteProvider;
class Collection implements QuoteProvider
{
private
$providers;
$providers
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
class A { var $property; }
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.
public function __construct()
$this->providers = array();
}
public function getQuotes()
$quotes = array();
foreach($this->providers as $provider)
$quotes = array_merge($quotes, $provider->getQuotes());
return $quotes;
public function add(QuoteProvider $provider)
if(! in_array($provider, $this->providers))
$this->providers[] = $provider;
return $this;
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.