8000 Merge pull request #190 from webimpress/hotfix/docs-short-array-notation · zendframework/zend-inputfilter@0928210 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit 0928210

Browse files
committed
Merge pull request #190 from webimpress/hotfix/docs-short-array-notation
Use short array notation in the documentation
2 parents 25c401a + 099c1cd commit 0928210

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/book/specs.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ default. To enable it, you must add the
1818
`input_filters` configuration key.
1919

2020
```php
21-
return array(
22-
'input_filters' => array(
23-
'abstract_factories' => array(
24-
'Zend\InputFilter\InputFilterAbstractServiceFactory'
25-
),
26-
),
27-
);
21+
return [
22+
'input_filters' => [
23+
'abstract_factories' => [
24+
'Zend\InputFilter\InputFilterAbstractServiceFactory',
25+
],
26+
],
27+
];
2828
```
2929

3030
For [Expressive](https://docs.zendframework.com/zend-expressive/) when using

0 commit comments

Comments
 (0)
0