for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Percy\Store;
use InvalidArgumentException;
use Percy\Decorator\DecoratorTrait;
use Percy\Entity\Collection;
abstract class AbstractStore implements StoreInterface
{
use DecoratorTrait;
/**
* Iterate collection and validate data.
*
* @param \Percy\EntityCollection $collection
* @return boolean
*/
public function validate(Collection $collection)
$collection
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.