Skip to content

Commit 22e6df8

Browse files
authored
Convert tabs to spaces in README.md example code
Most of the example code uses 4-space indentations. This fixes the one exception (which had tabs) to also use 4-space indenting.
1 parent 7d2e86c commit 22e6df8

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ Add target class in the application config:
1111
```php
1212
return [
1313
'components' => [
14-
'log' => [
15-
'traceLevel' => YII_DEBUG ? 3 : 0,
16-
'targets' => [
17-
[
18-
'class' => 'Sil\Sentry\SentryTarget',
19-
'dsn' => 'http://2682ybvhbs347:[email protected]/1',
20-
'levels' => ['error', 'warning'],
21-
// Write the context information (the default is true):
22-
'context' => true,
23-
// Additional options for `Sentry\init`:
24-
'clientOptions' => ['release' => '[email protected]']
25-
],
26-
],
27-
],
14+
'log' => [
15+
'traceLevel' => YII_DEBUG ? 3 : 0,
16+
'targets' => [
17+
[
18+
'class' => 'Sil\Sentry\SentryTarget',
19+
'dsn' => 'http://2682ybvhbs347:[email protected]/1',
20+
'levels' => ['error', 'warning'],
21+
// Write the context information (the default is true):
22+
'context' => true,
23+
// Additional options for `Sentry\init`:
24+
'clientOptions' => ['release' => '[email protected]']
25+
],
26+
],
27+
],
2828
],
2929
];
3030
```

0 commit comments

Comments
 (0)