This commit is contained in:
Tim Nagel 2015-03-12 21:20:00 +11:00
commit dd388e4b25
86 changed files with 535 additions and 483 deletions

View file

@ -5,7 +5,7 @@ namespace FOS\ElasticaBundle\Provider;
use FOS\ElasticaBundle\Persister\ObjectPersisterInterface;
/**
* AbstractProvider
* AbstractProvider.
*/
abstract class AbstractProvider implements ProviderInterface
{
@ -33,9 +33,9 @@ abstract class AbstractProvider implements ProviderInterface
* Constructor.
*
* @param ObjectPersisterInterface $objectPersister
* @param IndexableInterface $indexable
* @param string $objectClass
* @param array $options
* @param IndexableInterface $indexable
* @param string $objectClass
* @param array $options
*/
public function __construct(
ObjectPersisterInterface $objectPersister,
@ -56,6 +56,7 @@ abstract class AbstractProvider implements ProviderInterface
* Checks if a given object should be indexed or not.
*
* @param object $object
*
* @return bool
*/
protected function isObjectIndexable($object)
@ -68,7 +69,7 @@ abstract class AbstractProvider implements ProviderInterface
}
/**
* Get string with RAM usage information (current and peak)
* Get string with RAM usage information (current and peak).
*
* @return string
*/