Skip to content

Commit c0297cc

Browse files
committed
IHF: Docs minor fixes.
1 parent f575edf commit c0297cc

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
@@ -33,7 +33,7 @@ Provides Laravel-specific and pure PHP helper functions.
3333
3434
## Dump
3535
36-
#### `get_dump`
36+
#### `get_dump()`
3737
3838
Returns nicely formatted string representation of the variable, using [Symfony VarDumper Component](http://symfony.com/doc/current/components/var_dumper/introduction.html) with all of it's benefits:
3939
```php
@@ -75,7 +75,7 @@ $decoded = is_json('{"foo":1,"bar":2,"baz":3}', true);
7575

7676
## Laravel
7777

78-
#### `laravel_db_is_mysql`
78+
#### `laravel_db_is_mysql()`
7979

8080
Checks if default database connection is `mysql` or not:
8181
```php
@@ -84,7 +84,7 @@ if (laravel_db_is_mysql()) {
8484
}
8585
```
8686
87-
#### `laravel_db_mysql_now`
87+
#### `laravel_db_mysql_now()`
8888
8989
Returns current database datetime string, using `mysql` connection:
9090
```php
@@ -93,7 +93,7 @@ $now = laravel_db_mysql_now();
9393
// 2016-06-23 15:23:16
9494
```
9595
96-
#### `laravel_db_mysql_variable`
96+
#### `laravel_db_mysql_variable()`
9797
9898
Returns value of specified `mysql` variable:
9999
```php

0 commit comments

Comments
 (0)