Skip to content

Commit 80694e4

Browse files
authored
DOCSP-42155: adjust for updated source constants (#3110)
* DOCSP-42155: adjust for updated source constants * MW PR fixes 1
1 parent f35d632 commit 80694e4

32 files changed

+111
-111
lines changed

docs/cache.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ adds 5, and removes 2.
150150

151151
.. note::
152152

153-
{+odm-short+} supports incrementing and decrementing with integer and float values.
153+
The {+odm-short+} supports incrementing and decrementing with integer and float values.
154154

155155
For more information about using the cache, see the `Laravel Cache documentation
156156
<https://laravel.com/docs/{+laravel-docs-version+}/cache#cache-usage>`__.

docs/compatibility.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ Laravel Compatibility
2121
---------------------
2222

2323
The following compatibility table specifies the versions of Laravel and
24-
{+odm-short+} that you can use together.
24+
the {+odm-short+} that you can use together.
2525

2626
.. include:: /includes/framework-compatibility-laravel.rst
2727

28-
To find compatibility information for unmaintained versions of {+odm-short+},
28+
To find compatibility information for unmaintained versions of the {+odm-short+},
2929
see `Laravel Version Compatibility <{+mongodb-laravel-gh+}/blob/3.9/README.md#installation>`__
3030
on GitHub.

docs/eloquent-models.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ Eloquent Models
1313

1414
Eloquent models are part of the Laravel Eloquent object-relational
1515
mapping (ORM) framework, which lets you to work with data in a relational
16-
database by using model classes and Eloquent syntax. {+odm-short+} extends
16+
database by using model classes and Eloquent syntax. The {+odm-short+} extends
1717
this framework so that you can use Eloquent syntax to work with data in a
1818
MongoDB database.
1919

2020
This section contains guidance on how to use Eloquent models in
21-
{+odm-short+} to work with MongoDB in the following ways:
21+
the {+odm-short+} to work with MongoDB in the following ways:
2222

2323
- :ref:`laravel-eloquent-model-class` shows how to define models and customize
2424
their behavior

docs/eloquent-models/model-class.txt

+12-12
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ Eloquent Model Class
2020
Overview
2121
--------
2222

23-
This guide shows you how to use the {+odm-long+} to define and
23+
This guide shows you how to use {+odm-long+} to define and
2424
customize Laravel Eloquent models. You can use these models to work with
2525
MongoDB data by using the Laravel Eloquent object-relational mapper (ORM).
2626

2727
The following sections explain how to add Laravel Eloquent ORM behaviors
28-
to {+odm-short+} models:
28+
to {+odm-long+} models:
2929

3030
- :ref:`laravel-model-define` demonstrates how to create a model class.
3131
- :ref:`laravel-authenticatable-model` shows how to set MongoDB as the
@@ -47,7 +47,7 @@ Define an Eloquent Model Class
4747
Eloquent models are classes that represent your data. They include methods
4848
that perform database operations such as inserts, updates, and deletes.
4949

50-
To declare a {+odm-short+} model, create a class in the ``app/Models``
50+
To declare a {+odm-long+} model, create a class in the ``app/Models``
5151
directory of your Laravel application that extends
5252
``MongoDB\Laravel\Eloquent\Model`` as shown in the following code example:
5353

@@ -78,8 +78,8 @@ Extend the Authenticatable Model
7878
--------------------------------
7979

8080
To configure MongoDB as the Laravel user provider, you can extend the
81-
{+odm-short+} ``MongoDB\Laravel\Auth\User`` class. The following code example
82-
shows how to extend this class:
81+
{+odm-short+} ``MongoDB\Laravel\Auth\User`` class. The following code
82+
example shows how to extend this class:
8383

8484
.. literalinclude:: /includes/eloquent-models/AuthenticatableUser.php
8585
:language: php
@@ -155,7 +155,7 @@ To learn more about primary key behavior and customization options, see
155155
in the Laravel docs.
156156

157157
To learn more about the ``_id`` field, ObjectIDs, and the MongoDB document
158-
structure, see :manual:`Documents </core/document>` in the MongoDB server docs.
158+
structure, see :manual:`Documents </core/document>` in the Server manual.
159159

160160
.. _laravel-model-soft-delete:
161161

@@ -227,7 +227,7 @@ less than three years ago:
227227
Planet::where( 'discovery_dt', '>', new DateTime('-3 years'))->get();
228228

229229
To learn more about MongoDB's data types, see :manual:`BSON Types </reference/bson-types/>`
230-
in the MongoDB server docs.
230+
in the Server manual.
231231

232232
To learn more about the Laravel casting helper and supported types, see `Attribute Casting <https://laravel.com/docs/{+laravel-docs-version+}/eloquent-mutators#attribute-casting>`__
233233
in the Laravel docs.
@@ -289,7 +289,7 @@ in the Laravel docs.
289289
Extend Third-Party Model Classes
290290
--------------------------------
291291

292-
You can use {+odm-short+} to extend a third-party model class by
292+
You can use the {+odm-short+} to extend a third-party model class by
293293
including the ``DocumentModel`` trait when defining your model class. By
294294
including this trait, you can make the third-party class compatible with
295295
MongoDB.
@@ -299,7 +299,7 @@ declare the following properties in your class:
299299

300300
- ``$primaryKey = '_id'``, because the ``_id`` field uniquely
301301
identifies MongoDB documents
302-
- ``$keyType = 'string'``, because {+odm-short+} casts MongoDB
302+
- ``$keyType = 'string'``, because the {+odm-short+} casts MongoDB
303303
``ObjectId`` values to type ``string``
304304

305305
Extended Class Example
@@ -344,7 +344,7 @@ appropriate import to your model:
344344
.. note::
345345

346346
When enabling soft deletes on a mass prunable model, you must import the
347-
following {+odm-short+} packages:
347+
following {+odm-long+} packages:
348348

349349
- ``MongoDB\Laravel\Eloquent\SoftDeletes``
350350
- ``MongoDB\Laravel\Eloquent\MassPrunable``
@@ -437,11 +437,11 @@ You can define the new model class with the following behavior:
437437

438438
In the ``"WASP-39 b"`` document in the following code, the
439439
``schema_version`` field value is less than ``2``. When you retrieve the
440-
document, {+odm-short+} adds the ``galaxy`` field and updates the schema
440+
document, the {+odm-short+} adds the ``galaxy`` field and updates the schema
441441
version to the current version, ``2``.
442442

443443
The ``"Saturn"`` document does not contain the ``schema_version`` field,
444-
so {+odm-short+} assigns it the current schema version upon saving.
444+
so the {+odm-short+} assigns it the current schema version upon saving.
445445

446446
Finally, the code retrieves the models from the collection to
447447
demonstrate the changes:

docs/eloquent-models/relationships.txt

+10-10
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ related model by using the same syntax as you use to access a property on the
3232
model.
3333

3434
The following sections describe the Laravel Eloquent and MongoDB-specific
35-
relationships available in {+odm-short+} and show examples of how to define
35+
relationships available in the {+odm-short+} and show examples of how to define
3636
and use them:
3737

3838
- :ref:`One to one relationship <laravel-eloquent-relationship-one-to-one>`,
@@ -59,7 +59,7 @@ When you add a one to one relationship, Eloquent lets you access the model by
5959
using a dynamic property and stores the model's document ID on the related
6060
model.
6161

62-
In {+odm-short+}, you can define a one to one relationship by using the
62+
In {+odm-long+}, you can define a one to one relationship by using the
6363
``hasOne()`` method or ``belongsTo()`` method.
6464

6565
When you add the inverse of the relationship by using the ``belongsTo()``
@@ -143,7 +143,7 @@ When you add a one to many relationship method, Eloquent lets you access the
143143
model by using a dynamic property and stores the parent model's document ID
144144
on each child model document.
145145

146-
In {+odm-short+}, you can define a one to many relationship by adding the
146+
In {+odm-long+}, you can define a one to many relationship by adding the
147147
``hasMany()`` method on the parent class and, optionally, the ``belongsTo()``
148148
method on the child class.
149149

@@ -234,17 +234,17 @@ A many to many relationship consists of a relationship between two different
234234
model types in which, for each type of model, an instance of the model can
235235
be related to multiple instances of the other type.
236236

237-
In {+odm-short+}, you can define a many to many relationship by adding the
237+
In {+odm-long+}, you can define a many to many relationship by adding the
238238
``belongsToMany()`` method to both related classes.
239239

240240
When you define a many to many relationship in a relational database, Laravel
241-
creates a pivot table to track the relationships. When you use {+odm-short+},
241+
creates a pivot table to track the relationships. When you use the {+odm-short+},
242242
it omits the pivot table creation and adds the related document IDs to a
243243
document field derived from the related model class name.
244244

245245
.. tip::
246246

247-
Since {+odm-short+} uses a document field instead of a pivot table, omit
247+
Since the {+odm-short+} uses a document field instead of a pivot table, omit
248248
the pivot table parameter from the ``belongsToMany()`` constructor or set
249249
it to ``null``.
250250

@@ -365,7 +365,7 @@ to meet one or more of the following requirements:
365365
data
366366
- Reducing the number of reads required to fetch the data
367367

368-
In {+odm-short+}, you can define embedded documents by adding one of the
368+
In {+odm-long+}, you can define embedded documents by adding one of the
369369
following methods:
370370

371371
- ``embedsOne()`` to embed a single document
@@ -377,7 +377,7 @@ following methods:
377377
objects.
378378

379379
To learn more about the MongoDB embedded document pattern, see the following
380-
MongoDB server tutorials:
380+
MongoDB Server tutorials:
381381

382382
- :manual:`Model One-to-One Relationships with Embedded Documents </tutorial/model-embedded-one-to-one-relationships-between-documents/>`
383383
- :manual:`Model One-to-Many Relationships with Embedded Documents </tutorial/model-embedded-one-to-many-relationships-between-documents/>`
@@ -446,13 +446,13 @@ running the code:
446446
Cross-Database Relationships
447447
----------------------------
448448

449-
A cross-database relationship in {+odm-short+} is a relationship between models
449+
A cross-database relationship in {+odm-long+} is a relationship between models
450450
stored in a relational database and models stored in a MongoDB database.
451451

452452
When you add a cross-database relationship, Eloquent lets you access the
453453
related models by using a dynamic property.
454454

455-
{+odm-short+} supports the following cross-database relationship methods:
455+
The {+odm-short+} supports the following cross-database relationship methods:
456456

457457
- ``hasOne()``
458458
- ``hasMany()``

docs/eloquent-models/schema-builder.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,22 @@ Laravel provides a **facade** to access the schema builder class ``Schema``,
2424
which lets you create and modify tables. Facades are static interfaces to
2525
classes that make the syntax more concise and improve testability.
2626

27-
{+odm-short+} supports a subset of the index and collection management methods
27+
The {+odm-short+} supports a subset of the index and collection management methods
2828
in the Laravel ``Schema`` facade.
2929

3030
To learn more about facades, see `Facades <https://laravel.com/docs/{+laravel-docs-version+}/facades>`__
3131
in the Laravel documentation.
3232

3333
The following sections describe the Laravel schema builder features available
34-
in {+odm-short+} and show examples of how to use them:
34+
in the {+odm-short+} and show examples of how to use them:
3535

3636
- :ref:`<laravel-eloquent-migrations>`
3737
- :ref:`<laravel-eloquent-collection-exists>`
3838
- :ref:`<laravel-eloquent-indexes>`
3939

4040
.. note::
4141

42-
{+odm-short+} supports managing indexes and collections, but
42+
The {+odm-short+} supports managing indexes and collections, but
4343
excludes support for MongoDB JSON schemas for data validation. To learn
4444
more about JSON schema validation, see :manual:`Schema Validation </core/schema-validation/>`
4545
in the {+server-docs-name+}.
@@ -67,7 +67,7 @@ following changes to perform the schema changes on your MongoDB database:
6767

6868
- Replace the ``Illuminate\Database\Schema\Blueprint`` import with
6969
``MongoDB\Laravel\Schema\Blueprint`` if it is referenced in your migration
70-
- Use only commands and syntax supported by {+odm-short+}
70+
- Use only commands and syntax supported by the {+odm-short+}
7171

7272
.. tip::
7373

@@ -251,7 +251,7 @@ in the {+server-docs-name+}.
251251
Create Sparse, TTL, and Unique Indexes
252252
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
253253

254-
You can use {+odm-short+} helper methods to create the following types of
254+
You can use {+odm-long+} helper methods to create the following types of
255255
indexes:
256256

257257
- Sparse indexes, which allow index entries only for documents that contain the

docs/feature-compatibility.txt

+9-9
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ Overview
2121
--------
2222

2323
This guide describes the Laravel features that are supported by
24-
the {+odm-long+}. This page discusses Laravel version 11.x feature
25-
availability in {+odm-short+}.
24+
{+odm-long+}. This page discusses Laravel version 11.x feature
25+
availability in the {+odm-short+}.
2626

2727
The following sections contain tables that describe whether individual
28-
features are available in {+odm-short+}.
28+
features are available in the {+odm-short+}.
2929

3030
Database Features
3131
-----------------
@@ -66,7 +66,7 @@ Database Features
6666
Query Features
6767
--------------
6868

69-
The following Eloquent methods are not supported in {+odm-short+}:
69+
The following Eloquent methods are not supported in the {+odm-short+}:
7070

7171
- ``toSql()``
7272
- ``toRawSql()``
@@ -168,19 +168,19 @@ The following Eloquent methods are not supported in {+odm-short+}:
168168
Pagination Features
169169
-------------------
170170

171-
{+odm-short+} supports all Laravel pagination features.
171+
The {+odm-short+} supports all Laravel pagination features.
172172

173173

174174
Migration Features
175175
------------------
176176

177-
{+odm-short+} supports all Laravel migration features, but the
177+
The {+odm-short+} supports all Laravel migration features, but the
178178
implementation is specific to MongoDB's schemaless model.
179179

180180
Seeding Features
181181
----------------
182182

183-
{+odm-short+} supports all Laravel seeding features.
183+
The {+odm-short+} supports all Laravel seeding features.
184184

185185
Eloquent Features
186186
-----------------
@@ -268,7 +268,7 @@ Eloquent Relationship Features
268268
Eloquent Collection Features
269269
----------------------------
270270

271-
{+odm-short+} supports all Eloquent collection features.
271+
The {+odm-short+} supports all Eloquent collection features.
272272

273273
Eloquent Mutator Features
274274
-------------------------
@@ -304,4 +304,4 @@ Eloquent Mutator Features
304304
Eloquent Model Factory Features
305305
-------------------------------
306306

307-
{+odm-short+} supports all Eloquent factory features.
307+
The {+odm-short+} supports all Eloquent factory features.

docs/fundamentals.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Fundamentals
2121
/fundamentals/write-operations
2222
/fundamentals/aggregation-builder
2323

24-
Learn more about the following concepts related to the {+odm-long+}:
24+
Learn more about the following concepts related to {+odm-long+}:
2525

2626
- :ref:`laravel-fundamentals-connection`
2727
- :ref:`laravel-db-coll`

docs/fundamentals/aggregation-builder.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ An aggregation pipeline is composed of **aggregation stages**. Aggregation
3333
stages use operators to process input data and produce data that the next
3434
stage uses as its input.
3535

36-
The {+odm-short+} aggregation builder lets you build aggregation stages and
36+
The {+odm-long+} aggregation builder lets you build aggregation stages and
3737
aggregation pipelines. The following sections show examples of how to use the
3838
aggregation builder to create the stages of an aggregation pipeline:
3939

@@ -43,7 +43,7 @@ aggregation builder to create the stages of an aggregation pipeline:
4343

4444
.. tip::
4545

46-
The aggregation builder feature is available only in {+odm-short+} versions
46+
The aggregation builder feature is available only in {+odm-long+} versions
4747
4.3 and later. To learn more about running aggregations without using the
4848
aggregation builder, see :ref:`laravel-query-builder-aggregations` in the
4949
Query Builder guide.
@@ -136,7 +136,7 @@ available indexes and reduce the amount of data the subsequent stages process.
136136
aggregation stages.
137137

138138
This example constructs a query filter for a **match** aggregation stage by
139-
using the ``MongoDB\Builder\Query`` builder. The match stage includes the the
139+
using the ``MongoDB\Builder\Query`` builder. The match stage includes the
140140
following criteria:
141141

142142
- Returns results that match either of the query filters by using the

docs/fundamentals/connection.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Connections
2626
Overview
2727
--------
2828

29-
Learn how to use {+odm-short+} to set up a connection to a MongoDB deployment
29+
Learn how to use {+odm-long+} to set up a connection to a MongoDB deployment
3030
and specify connection behavior in the following sections:
3131

3232
- :ref:`laravel-connect-to-mongodb`

docs/fundamentals/connection/connect-to-mongodb.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Overview
2121
--------
2222

2323
In this guide, you can learn how to connect your Laravel application to a
24-
MongoDB instance or replica set deployment by using {+odm-short+}.
24+
MongoDB instance or replica set deployment by using {+odm-long+}.
2525

2626
This guide includes the following sections:
2727

@@ -41,7 +41,7 @@ Connection URI
4141
--------------
4242

4343
A **connection URI**, also known as a connection string, specifies how
44-
{+odm-short+} connects to MongoDB and how to behave while connected.
44+
the {+odm-short+} connects to MongoDB and how to behave while connected.
4545

4646
Parts of a Connection URI
4747
~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -86,7 +86,7 @@ To learn more about connection options, see
8686
Laravel Database Connection Configuration
8787
------------------------------------------
8888

89-
{+odm-short+} lets you configure your MongoDB database connection in the
89+
The {+odm-short+} lets you configure your MongoDB database connection in the
9090
``config/database.php`` Laravel application file. You can specify the following
9191
connection details in this file:
9292

@@ -308,7 +308,7 @@ following sample values:
308308

309309
DB_URI="mongodb://myUser:myPass123@host1:27017,host2:27017,host3:27017/?replicaSet=myRS"
310310

311-
When connecting to a replica set, the library that {+odm-short+} uses to manage
311+
When connecting to a replica set, the library that the {+odm-short+} uses to manage
312312
connections with MongoDB performs the following actions unless otherwise
313313
specified:
314314

0 commit comments

Comments
 (0)