for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Majora\Framework\Loader\Bridge\Graph;
use Majora\Framework\Loader\LoaderInterface;
/**
* Trait to use into Graph loaders to get a simple implementation of LoaderInterface
*/
trait GraphLoaderTrait
{
* @see LoaderInterface::retrieveAll()
public function retrieveAll(array $filters = array(), $limit = null, $offset = null)
$filters
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$limit
$offset
throw new \BadMethodCallException(sprintf('Not yet implemented : %s::%s()', __CLASS__, __FUNCTION__));
}
* @see LoaderInterface::retrieveOne()
public function retrieveOne(array $filters = array())
* @see LoaderInterface::retrieve()
public function retrieve($id)
$id
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.