Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit c02d563

Browse files
authored
Merge pull request #2616 from magento-commerce/db_recommend
"Magento recommends" to "We recommend"
2 parents 208a238 + 0e07a77 commit c02d563

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+55
-55
lines changed

src/guides/v2.3/extension-dev-guide/build/build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Building your component involves laying out the file structure, creating the nec
1313

1414
Before you begin creating your new component, make sure that you have a working installation of Magento 2, and the Magento [System Requirements]({{ page.baseurl }}/install-gde/system-requirements.html).
1515

16-
Also, Magento recommends that you disable caching while setting up the component file structure and adding configuration files.
16+
Also, we recommend that you disable caching while setting up the component file structure and adding configuration files.
1717

1818
The following details the component building process:
1919

src/guides/v2.3/extension-dev-guide/build/optimal-dev-environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The following is a list of the different ways you can install Magento 2 locally:
4040

4141
The following is a list of optimizations you can make on your local development machine
4242

43-
* Magento recommends installing and using the latest supported version of [PHP](https://glossary.magento.com/php) 7 to increase performance.
43+
* We recommend installing and using the latest supported version of [PHP](https://glossary.magento.com/php) 7 to increase performance.
4444
* Replace your MySQL database with [Percona](https://www.percona.com/software/mysql-database/percona-server){:target="_blank"}.
4545
* Make sure you install and enable [PHP OPcache](http://php.net/manual/en/intro.opcache.php){:target="_blank"}.
4646
* Xdebug is off by default. Enable this feature only when you need it because it requires a lot of memory and degrades performance.

src/guides/v2.3/extension-dev-guide/cache/page-caching/private-content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This example displays a customer's name on a cacheable page.
1111

1212
## Create a section source {#config-cache-priv-how-source}
1313

14-
The section source class is responsible for retrieving data for the section. As a best practice, Magento recommends that you put your code within the `Vendor/ModuleName/CustomerData` namespace. Your classes must implement the [`Magento\Customer\CustomerData\SectionSourceInterface`]({{ site.mage2bloburl }}/{{ page.guide_version }}/app/code/Magento/Customer/CustomerData/SectionSourceInterface.php){:target="_blank"} interface.
14+
The section source class is responsible for retrieving data for the section. As a best practice, we recommend that you put your code within the `Vendor/ModuleName/CustomerData` namespace. Your classes must implement the [`Magento\Customer\CustomerData\SectionSourceInterface`]({{ site.mage2bloburl }}/{{ page.guide_version }}/app/code/Magento/Customer/CustomerData/SectionSourceInterface.php){:target="_blank"} interface.
1515

1616
The public method `getSectionData` must return an array with data for a private block.
1717

src/guides/v2.3/graphql/develop/resolvers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ A GraphQL resolver must implement one of the following interfaces:
2323

2424
- [`\Magento\Framework\GraphQl\Query\ResolverInterface`]({{ site.mage2bloburl }}/{{ page.guide_version }}/lib/internal/Magento/Framework/GraphQl/Query/ResolverInterface.php)
2525

26-
The first two interfaces provide a way to resolve multiple branches/leaves at once (known as batching), while the last one resolves one request at a time. Magento recommends using batch resolvers for queries because they improve performance by fetching information required to resolve multiple GraphQL requests with a single operation.
26+
The first two interfaces provide a way to resolve multiple branches/leaves at once (known as batching), while the last one resolves one request at a time. We recommend using batch resolvers for queries because they improve performance by fetching information required to resolve multiple GraphQL requests with a single operation.
2727

2828
## Query resolvers
2929

src/guides/v2.3/graphql/mutations/change-customer-password.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: changeCustomerPassword mutation
55

66
Use the `changeCustomerPassword` mutation to change the password for the logged-in customer.
77

8-
To return or modify information about a customer, Magento recommends you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html).
8+
To return or modify information about a customer, we recommend you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html).
99

1010
## Syntax
1111

src/guides/v2.3/graphql/mutations/create-customer-address.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: createCustomerAddress mutation
55

66
Use the `createCustomerAddress` mutation to create the customer's address.
77

8-
To return or modify information about a customer, Magento recommends you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html).
8+
To return or modify information about a customer, we recommend you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html).
99

1010
## Syntax
1111

src/guides/v2.3/graphql/mutations/create-customer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: createCustomer mutation
55

66
Use the `createCustomer` mutation to create a new customer.
77

8-
To return or modify information about a customer, Magento recommends you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html).
8+
To return or modify information about a customer, we recommend you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html).
99

1010
## Syntax
1111

src/guides/v2.3/graphql/mutations/delete-customer-address.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: deleteCustomerAddress mutation
55

66
Use the `deleteCustomerAddress` mutation to delete the specified customer address.
77

8-
To return or modify information about a customer, Magento recommends you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html).
8+
To return or modify information about a customer, we recommend you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html).
99

1010
## Syntax
1111

src/guides/v2.3/graphql/mutations/generate-customer-token.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: generateCustomerToken mutation
55

66
Use the `generateCustomerToken` mutation to create a new customer token.
77

8-
To return or modify information about a customer, Magento recommends you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html).
8+
To return or modify information about a customer, we recommend you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html).
99

1010
## Syntax
1111

src/guides/v2.3/graphql/mutations/revoke-customer-token.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: revokeCustomerToken mutation
55

66
Use the `revokeCustomerToken` mutation to revokes the customer's token.
77

8-
To return or modify information about a customer, Magento recommends you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html).
8+
To return or modify information about a customer, we recommend you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html).
99

1010
## Syntax
1111

0 commit comments

Comments
 (0)