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
e5c2da07
Commit
e5c2da07
authored
Sep 14, 2018
by
Markus Kalkbrenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated CHANGELOG
parent
e8cf9e41
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
CHANGELOG.md
CHANGELOG.md
+4
-0
src/Core/Client/Endpoint.php
src/Core/Client/Endpoint.php
+3
-3
No files found.
CHANGELOG.md
View file @
e5c2da07
...
@@ -7,10 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
...
@@ -7,10 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [master]
## [master]
### Added
### Added
-
Basic support for PUT requests in the HttpAdapter layer
-
Basic support for PUT requests in the HttpAdapter layer
-
Core Admin Queries
-
Endpoint::getServerUri
-
Endpoint::getCoreBaseUri
### Changed
### Changed
### Deprecated
### Deprecated
-
Endpoint::getBaseUri is deprecated. Please use getServerUri or getCoreBaseUri now.
### Removed
### Removed
...
...
src/Core/Client/Endpoint.php
View file @
e5c2da07
...
@@ -225,14 +225,14 @@ class Endpoint extends Configurable
...
@@ -225,14 +225,14 @@ class Endpoint extends Configurable
*
*
* Based on host, path, port and core options.
* Based on host, path, port and core options.
*
*
* @deprecated Please use getCoreBaseUri or getServerUri now, will be removed in Solarium
6
* @deprecated Please use getCoreBaseUri or getServerUri now, will be removed in Solarium
5
*
*
* @return string
* @return string
*/
*/
public
function
getBaseUri
()
public
function
getBaseUri
()
{
{
$message
=
'Endpoint::getBaseUri is dep
eracted since Solarium 5, will be removed in Solarium 6 please use
'
.
$message
=
'Endpoint::getBaseUri is dep
recated since Solarium 4.2, will be removed in Solarium 5.
'
.
'getServerUri or getCoreBaseUri now.'
;
'
please use
getServerUri or getCoreBaseUri now.'
;
@
trigger_error
(
$message
,
E_USER_DEPRECATED
);
@
trigger_error
(
$message
,
E_USER_DEPRECATED
);
return
$this
->
getCoreBaseUri
();
return
$this
->
getCoreBaseUri
();
...
...
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