| 12345678910111213141516171819202122232425 |
- <?php
- namespace Elasticsearch\Endpoints;
- use Elasticsearch\Serializers\SerializerInterface;
- use Elasticsearch\Transport;
- /**
- * Interface BulkEndpointInterface
- *
- * @category Elasticsearch
- * @package Elasticsearch\Endpoints
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- interface BulkEndpointInterface
- {
- /**
- * Constructor
- *
- * @param SerializerInterface $serializer A serializer
- */
- public function __construct(SerializerInterface $serializer);
- }
|