Commit 4fdffc4a authored by Dorian Villet's avatar Dorian Villet

Remove white line before end of interfaces.

parent 2b18ea4d
...@@ -68,5 +68,4 @@ interface AdapterInterface extends ConfigurableInterface ...@@ -68,5 +68,4 @@ interface AdapterInterface extends ConfigurableInterface
* @return Response * @return Response
*/ */
public function execute($request, $endpoint); public function execute($request, $endpoint);
} }
...@@ -94,5 +94,4 @@ interface ConfigurableInterface ...@@ -94,5 +94,4 @@ interface ConfigurableInterface
* @return array * @return array
*/ */
public function getOptions(); public function getOptions();
} }
...@@ -56,5 +56,4 @@ interface PluginInterface extends ConfigurableInterface ...@@ -56,5 +56,4 @@ interface PluginInterface extends ConfigurableInterface
* @param array $options * @param array $options
*/ */
public function initPlugin($client, $options); public function initPlugin($client, $options);
} }
...@@ -128,5 +128,4 @@ interface QueryInterface extends ConfigurableInterface ...@@ -128,5 +128,4 @@ interface QueryInterface extends ConfigurableInterface
* @return array * @return array
*/ */
public function getParams(); public function getParams();
} }
...@@ -53,5 +53,4 @@ interface RequestBuilderInterface ...@@ -53,5 +53,4 @@ interface RequestBuilderInterface
* @return Request * @return Request
*/ */
public function build(QueryInterface $query); public function build(QueryInterface $query);
} }
...@@ -58,5 +58,4 @@ interface ResponseParserInterface ...@@ -58,5 +58,4 @@ interface ResponseParserInterface
* @return mixed * @return mixed
*/ */
public function parse($result); public function parse($result);
} }
...@@ -50,5 +50,4 @@ interface ComponentRequestBuilderInterface ...@@ -50,5 +50,4 @@ interface ComponentRequestBuilderInterface
* @return Request * @return Request
*/ */
public function buildComponent($component, $request); public function buildComponent($component, $request);
} }
...@@ -50,5 +50,4 @@ interface ComponentParserInterface ...@@ -50,5 +50,4 @@ interface ComponentParserInterface
* @return object|null * @return object|null
*/ */
public function parse($query, $component, $data); public function parse($query, $component, $data);
} }
...@@ -49,5 +49,4 @@ interface DocumentInterface ...@@ -49,5 +49,4 @@ interface DocumentInterface
* @param array $fields * @param array $fields
*/ */
public function __construct(array $fields); public function __construct(array $fields);
} }
...@@ -51,5 +51,4 @@ abstract class Command extends Configurable ...@@ -51,5 +51,4 @@ abstract class Command extends Configurable
* @return string * @return string
*/ */
abstract public function getType(); abstract public function getType();
} }
...@@ -51,5 +51,4 @@ interface DocumentInterface ...@@ -51,5 +51,4 @@ interface DocumentInterface
* @param array $modifiers * @param array $modifiers
*/ */
public function __construct(array $fields = array(), array $boosts = array(), array $modifiers = array()); public function __construct(array $fields = array(), array $boosts = array(), array $modifiers = array());
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment