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

Commit 49f8631

Browse files
committed
Fix php code block conflict
1 parent 5b0ff13 commit 49f8631

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

src/_includes/config/split-deploy/example_update-prod.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To update the production system:
1515

1616
1. Stop any running queue workers by setting `cron_run` to `false` in `app/etc/env.php` as follows:
1717

18-
```php
18+
```php?start_inline=1
1919
'cron_consumers_runner' => [
2020
'cron_run' => false
2121
]

src/_videos/fundamentals/add-a-javascript-module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Now create two files:
4545

4646
{% collapsible Show source code %}
4747

48-
```php?start_inline=1
48+
```php
4949
<?php
5050
\Magento\Framework\Component\ComponentRegistrar::register(
5151
\Magento\Framework\Component\ComponentRegistrar::MODULE,

src/_videos/fundamentals/add-new-product-attribute.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
7272

7373
{% collapsible Show code %}
7474

75-
```php?start_inline=1
75+
```php
7676
<?php
7777
/**
7878
* Copyright © 2016 Magento. All rights reserved.
@@ -97,7 +97,7 @@ Create the file `app/code/Learning/ClothingMaterial/Setup/InstallData.php`:
9797

9898
{% collapsible Show code %}
9999

100-
```php?start_inline=1
100+
```php
101101
<?php
102102
/**
103103
* Copyright © 2016 Magento. All rights reserved.
@@ -204,7 +204,7 @@ Next, we need to create the source model:
204204

205205
{% collapsible Show code %}
206206

207-
```php?start_inline=1
207+
```php
208208
<?php
209209
/**
210210
* Copyright © 2016 Magento. All rights reserved.
@@ -248,7 +248,7 @@ Now we will create a backend model:
248248

249249
{% collapsible Show code %}
250250

251-
```php?start_inline=1
251+
```php
252252
<?php
253253
/**
254254
* Copyright © 2016 Magento. All rights reserved.
@@ -295,7 +295,7 @@ And finally, we create a frontend model to make our value bold:
295295

296296
{% collapsible Show code %}
297297

298-
```php?start_inline=1
298+
```php
299299
<?php
300300
namespace Learning\ClothingMaterial\Model\Attribute\Frontend;
301301

src/guides/v2.3/howdoi/checkout/checkout_new_field.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ Both shipping address and billing address forms are [generated dynamically]({{ p
2727
The following code snippet enumerates sample logic for adding a field named `Custom Attribute` to the shipping address form:
2828

2929
```php?start_inline=1
30-
<?php
3130
$customAttributeCode = 'custom_field';
3231
$customField = [
3332
'component' => 'Magento_Ui/js/form/element/abstract',

src/guides/v2.3/howdoi/checkout/checkout_payment_new_field.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ Then create the `app/code/Learning/CustomField/Observer/Frontend/Sales/OrderPaym
261261

262262
{% collapsible Show code %}
263263

264-
```php?start_inline=1
264+
```php
265265
<?php
266266

267267
namespace Learning\CustomField\Observer\Frontend\Sales;

0 commit comments

Comments
 (0)