Skip to content

Commit

Permalink
Merge pull request #110 from dlubitz/task-docs-links
Browse files Browse the repository at this point in the history
TASK: Replace links to elastic documentation
  • Loading branch information
ahaeslich authored Mar 24, 2023
2 parents 9d4544b + 6ecc516 commit b592a9b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions Classes/Annotations/Mapping.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ final class Mapping
* Defaults to the property/field name.
*
* @var string
* @see http://www.elasticsearch.org/guide/reference/mapping/core-types.html
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-params.html
*/
public $index_name;

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

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

/**
* Possible values are `no`, `yes`, `with_offsets`, `with_positions`, `with_positions_offsets`.
* Defaults to `no`.
*
* @see http://www.elasticsearch.org/guide/reference/mapping/core-types.html
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-params.html
* @var string
*/
public $term_vector;
Expand All @@ -61,7 +61,7 @@ final class Mapping
* The boost value. Defaults to `1.0`.
*
* @var float
* @see http://www.elasticsearch.org/guide/reference/mapping/boost-field.html
* @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/mapping-boost.html
*/
public $boost;

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

/**
* The normalizer used to normalizer the content of keyword type fields during indexing.
*
* @var string
* @see https://www.elastic.co/guide/en/elasticsearch/reference/master/normalizer.html
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/normalizer.html
*/
public $normalizer;

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

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

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

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

/**
* @var array
* @see https://www.elastic.co/guide/en/elasticsearch/reference/5.6/properties.html
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/properties.html
*/
public $properties;

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

Expand Down
2 changes: 1 addition & 1 deletion Classes/Domain/Model/Index.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Index
{
/**
* @var array
* @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-update-settings.html
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-update-settings.html
*/
static protected $updatableSettings = [
'index.number_of_replicas',
Expand Down
2 changes: 1 addition & 1 deletion Classes/Domain/Model/Mapping.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Mapping
protected $properties = [];

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

0 comments on commit b592a9b

Please sign in to comment.