We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cfb588 commit 1905a87Copy full SHA for 1905a87
docs/README.md
@@ -72,9 +72,9 @@ Add your Memsource account credentials:
72
return [
73
'oblik.memsource' => [
74
'login' => [
75
- 'username' => 'john',
76
- 'password' => '1234'
77
- ]
+ 'username' => 'john',
+ 'password' => '1234'
+ ]
78
]
79
];
80
```
@@ -102,13 +102,13 @@ You may generate context notes on the fly:
102
```php
103
104
105
- 'walker' => [
106
- 'contextNote' => function ($value) {
107
- if (strpos($value, '{{ year }}') !== false) {
+ 'walker' => [
+ 'contextNote' => function ($value) {
+ if (strpos($value, '{{ year }}') !== false) {
108
return "{{ year }} is the current calendar year.";
109
}
110
- }
111
+ }
112
113
114
0 commit comments