for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Majora\Framework\Repository\Graph;
use Majora\Framework\Model\CollectionableInterface;
use Majora\Framework\Repository\RepositoryInterface;
/**
* Trait to use into Graph repositories to get a simple implementation of RepositoryInterface
*/
trait GraphRepositoryTrait
{
* @see RepositoryInterface::persist()
public function persist(CollectionableInterface $entity)
$entity
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
}
* @see RepositoryInterface::remove()
public function remove(CollectionableInterface $entity)
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.