Skip to content

Commit 1f572a6

Browse files
committed
Fix doc ci issues
1 parent 122ce9f commit 1f572a6

8 files changed

Lines changed: 199 additions & 199 deletions

docs/en/executing-queries.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Queries can be executed with the `execute()` and `query()` methods. The
77
accept an optional second parameter `$params` which is an array of elements,
88
and if used will cause the underlying connection to use a prepared statement:
99

10-
``` php
10+
```php
1111
<?php
1212

1313
use Migrations\BaseMigration;
@@ -48,7 +48,7 @@ There are two methods available to fetch rows. The `fetchRow()` method will
4848
fetch a single row, whilst the `fetchAll()` method will return multiple rows.
4949
Both methods accept raw SQL as their only parameter:
5050

51-
``` php
51+
```php
5252
<?php
5353

5454
use Migrations\BaseMigration;
@@ -83,7 +83,7 @@ Migrations makes it easy to insert data into your tables. Whilst this feature is
8383
intended for the [seed feature](seeding), you are also free to use the
8484
insert methods in your migrations:
8585

86-
``` php
86+
```php
8787
<?php
8888

8989
use Migrations\BaseMigration;

0 commit comments

Comments
 (0)