Skip to content

Commit b592a9b

Browse files
authored
Merge pull request #110 from dlubitz/task-docs-links
TASK: Replace links to elastic documentation
2 parents 9d4544b + 6ecc516 commit b592a9b

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

Classes/Annotations/Mapping.php

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ final class Mapping
2424
* Defaults to the property/field name.
2525
*
2626
* @var string
27-
* @see http://www.elasticsearch.org/guide/reference/mapping/core-types.html
27+
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-params.html
2828
*/
2929
public $index_name;
3030

@@ -33,7 +33,7 @@ final class Mapping
3333
* Defaults to `no` (note, the JSON document itself is stored, and it can be retrieved from it).
3434
*
3535
* @var string
36-
* @see http://www.elasticsearch.org/guide/reference/mapping/core-types.html
36+
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-params.html
3737
*/
3838
public $store;
3939

@@ -44,15 +44,15 @@ final class Mapping
4444
* Defaults to analyzed.
4545
*
4646
* @var string
47-
* @see http://www.elasticsearch.org/guide/reference/mapping/core-types.html
47+
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-params.html
4848
*/
4949
public $index;
5050

5151
/**
5252
* Possible values are `no`, `yes`, `with_offsets`, `with_positions`, `with_positions_offsets`.
5353
* Defaults to `no`.
5454
*
55-
* @see http://www.elasticsearch.org/guide/reference/mapping/core-types.html
55+
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-params.html
5656
* @var string
5757
*/
5858
public $term_vector;
@@ -61,7 +61,7 @@ final class Mapping
6161
* The boost value. Defaults to `1.0`.
6262
*
6363
* @var float
64-
* @see http://www.elasticsearch.org/guide/reference/mapping/boost-field.html
64+
* @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/mapping-boost.html
6565
*/
6666
public $boost;
6767

@@ -70,23 +70,23 @@ final class Mapping
7070
* Defaults to the globally configured analyzer.
7171
*
7272
* @var string
73-
* @see http://www.elasticsearch.org/guide/reference/mapping/core-types.html
73+
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-params.html
7474
*/
7575
public $analyzer;
7676

7777
/**
7878
* The normalizer used to normalizer the content of keyword type fields during indexing.
7979
*
8080
* @var string
81-
* @see https://www.elastic.co/guide/en/elasticsearch/reference/master/normalizer.html
81+
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/normalizer.html
8282
*/
8383
public $normalizer;
8484

8585
/**
8686
* The analyzer used to analyze the text contents only when searching using a query string.
8787
*
8888
* @var string
89-
* @see https://www.elastic.co/guide/en/elasticsearch/reference/5.6/search-analyzer.html
89+
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-analyzer.html
9090
*/
9191
public $search_analyzer;
9292

@@ -95,7 +95,7 @@ final class Mapping
9595
* Defaults to the property/field type.
9696
*
9797
* @var string
98-
* @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/mapping-types.html
98+
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-types.html
9999
*/
100100
public $type;
101101

@@ -104,25 +104,25 @@ final class Mapping
104104
* Defaults to `dateOptionalTime`.
105105
*
106106
* @var string
107-
* @see http://www.elasticsearch.org/guide/reference/mapping/date-format.html
107+
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-date-format.html
108108
*/
109109
public $format;
110110

111111
/**
112112
* @var array
113-
* @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/1.x/_multi_fields.html
113+
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-types.html#types-multi-fields
114114
*/
115115
public $fields;
116116

117117
/**
118118
* @var array
119-
* @see https://www.elastic.co/guide/en/elasticsearch/reference/5.6/properties.html
119+
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/properties.html
120120
*/
121121
public $properties;
122122

123123
/**
124124
* @var bool
125-
* @see https://www.elastic.co/guide/en/elasticsearch/reference/5.4/fielddata.html
125+
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/text.html#fielddata-mapping-param
126126
*/
127127
public $fielddata;
128128

Classes/Domain/Model/Index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Index
2626
{
2727
/**
2828
* @var array
29-
* @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-update-settings.html
29+
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-update-settings.html
3030
*/
3131
static protected $updatableSettings = [
3232
'index.number_of_replicas',

Classes/Domain/Model/Mapping.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class Mapping
3535
protected $properties = [];
3636

3737
/**
38-
* see http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/mapping-root-object-type.html#_dynamic_templates
38+
* see https://www.elastic.co/guide/en/elasticsearch/reference/current/dynamic-templates.html
3939
* @var array
4040
*/
4141
protected $dynamicTemplates = [];

0 commit comments

Comments
 (0)