Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
solarium
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
solarium
Commits
4fdffc4a
Commit
4fdffc4a
authored
Sep 12, 2013
by
Dorian Villet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove white line before end of interfaces.
parent
2b18ea4d
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
0 additions
and
11 deletions
+0
-11
library/Solarium/Core/Client/Adapter/AdapterInterface.php
library/Solarium/Core/Client/Adapter/AdapterInterface.php
+0
-1
library/Solarium/Core/ConfigurableInterface.php
library/Solarium/Core/ConfigurableInterface.php
+0
-1
library/Solarium/Core/Plugin/PluginInterface.php
library/Solarium/Core/Plugin/PluginInterface.php
+0
-1
library/Solarium/Core/Query/QueryInterface.php
library/Solarium/Core/Query/QueryInterface.php
+0
-1
library/Solarium/Core/Query/RequestBuilderInterface.php
library/Solarium/Core/Query/RequestBuilderInterface.php
+0
-1
library/Solarium/Core/Query/ResponseParserInterface.php
library/Solarium/Core/Query/ResponseParserInterface.php
+0
-1
library/Solarium/QueryType/Select/RequestBuilder/Component/ComponentRequestBuilderInterface.php
...estBuilder/Component/ComponentRequestBuilderInterface.php
+0
-1
library/Solarium/QueryType/Select/ResponseParser/Component/ComponentParserInterface.php
...ect/ResponseParser/Component/ComponentParserInterface.php
+0
-1
library/Solarium/QueryType/Select/Result/DocumentInterface.php
...ry/Solarium/QueryType/Select/Result/DocumentInterface.php
+0
-1
library/Solarium/QueryType/Update/Query/Command/Command.php
library/Solarium/QueryType/Update/Query/Command/Command.php
+0
-1
library/Solarium/QueryType/Update/Query/Document/DocumentInterface.php
...ium/QueryType/Update/Query/Document/DocumentInterface.php
+0
-1
No files found.
library/Solarium/Core/Client/Adapter/AdapterInterface.php
View file @
4fdffc4a
...
@@ -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
);
}
}
library/Solarium/Core/ConfigurableInterface.php
View file @
4fdffc4a
...
@@ -94,5 +94,4 @@ interface ConfigurableInterface
...
@@ -94,5 +94,4 @@ interface ConfigurableInterface
* @return array
* @return array
*/
*/
public
function
getOptions
();
public
function
getOptions
();
}
}
library/Solarium/Core/Plugin/PluginInterface.php
View file @
4fdffc4a
...
@@ -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
);
}
}
library/Solarium/Core/Query/QueryInterface.php
View file @
4fdffc4a
...
@@ -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
();
}
}
library/Solarium/Core/Query/RequestBuilderInterface.php
View file @
4fdffc4a
...
@@ -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
);
}
}
library/Solarium/Core/Query/ResponseParserInterface.php
View file @
4fdffc4a
...
@@ -58,5 +58,4 @@ interface ResponseParserInterface
...
@@ -58,5 +58,4 @@ interface ResponseParserInterface
* @return mixed
* @return mixed
*/
*/
public
function
parse
(
$result
);
public
function
parse
(
$result
);
}
}
library/Solarium/QueryType/Select/RequestBuilder/Component/ComponentRequestBuilderInterface.php
View file @
4fdffc4a
...
@@ -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
);
}
}
library/Solarium/QueryType/Select/ResponseParser/Component/ComponentParserInterface.php
View file @
4fdffc4a
...
@@ -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
);
}
}
library/Solarium/QueryType/Select/Result/DocumentInterface.php
View file @
4fdffc4a
...
@@ -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
);
}
}
library/Solarium/QueryType/Update/Query/Command/Command.php
View file @
4fdffc4a
...
@@ -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
();
}
}
library/Solarium/QueryType/Update/Query/Document/DocumentInterface.php
View file @
4fdffc4a
...
@@ -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
());
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment