Skip to content

Commit a262d99

Browse files
authored
change tabs -> 2 spaces in README.md
Tabs difficult read code examples in small screens (mobiles for example)
1 parent 9babb2f commit a262d99

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Let's assume you have the following table:
1212

1313
```sql
1414
CREATE TABLE users (
15-
id INTEGER PRIMARY KEY,
16-
name TEXT,
17-
password TEXT
15+
id INTEGER PRIMARY KEY,
16+
name TEXT,
17+
password TEXT
1818
);
1919
```
2020

@@ -31,10 +31,10 @@ Now you can setup a new class to represent this table:
3131
* @property string $password
3232
*/
3333
class User extends flight\ActiveRecord {
34-
public function __construct($databaseConnection)
35-
{
36-
parent::__construct($databaseConnection, 'users', [ /* custom values */ ]);
37-
}
34+
public function __construct($databaseConnection)
35+
{
36+
parent::__construct($databaseConnection, 'users', [/* custom values */]);
37+
}
3838
}
3939
```
4040

0 commit comments

Comments
 (0)