File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ echo $flags['querytype'];
75
75
### Parsing and building SQL query
76
76
77
77
``` php
78
- require __DIR__." /vendor/autoload.php" ;
78
+ require __DIR__ . ' /vendor/autoload.php' ;
79
79
80
80
$query1 = "select * from a";
81
81
$parser = new PhpMyAdmin\SqlParser\Parser($query1);
@@ -107,7 +107,7 @@ You can localize error messages installing `phpmyadmin/motranslator` version `3.
107
107
composer require phpmyadmin/motranslator:^3.0
108
108
```
109
109
110
- The locale is automatically detected from your enrivonment , you can also set a different locale
110
+ The locale is automatically detected from your environment , you can also set a different locale
111
111
112
112
** From cli** :
113
113
``` sh
@@ -116,7 +116,7 @@ LC_ALL=pl ./vendor/bin/lint-query --query "SELECT 1"
116
116
117
117
** From php** :
118
118
``` php
119
- require __DIR__." /vendor/autoload.php" ;
119
+ require __DIR__ . ' /vendor/autoload.php' ;
120
120
121
121
$GLOBALS['lang'] = 'pl';
122
122
You can’t perform that action at this time.
0 commit comments