Skip to content

Commit 60b4db9

Browse files
authored
Update README.md
Add PHP syntax highlight to README.md file.
1 parent d162b9b commit 60b4db9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ file app.php in array aliases :
2121

2222
# Example Update 1
2323

24-
```
24+
```php
2525
use App\Models\User;
2626

2727
$userInstance = new User;
@@ -44,7 +44,7 @@ Batch::update($userInstance, $value, $index);
4444

4545
# Example Update 2
4646

47-
```
47+
```php
4848
use App\Models\User;
4949

5050
$userInstance = new User;
@@ -75,7 +75,7 @@ Batch::update($userInstance, $value, $index);
7575

7676
# Example Insert
7777

78-
```
78+
```php
7979
use App\Models\User;
8080

8181
$userInstance = new User;
@@ -114,7 +114,7 @@ $batchSize = 500; // insert 500 (default), 100 minimum rows in one query
114114
$result = Batch::insert($userInstance, $columns, $values, $batchSize);
115115
```
116116

117-
```
117+
```php
118118
// result : false or array
119119

120120
sample array result:

0 commit comments

Comments
 (0)