Skip to content

Commit 120ec2a

Browse files
committed
WIP
1 parent 6038633 commit 120ec2a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ $connector = new DocuWareConnector(
214214
);
215215
```
216216

217-
### Extending the connector
217+
### Extending the connector (EXAMPLE)
218218

219219
We understand it may be repetitive to pass the configuration every time you create a new connector.
220220

@@ -230,7 +230,7 @@ namespace App\Connectors;
230230
use CodebarAg\DocuWare\Connectors\DocuWareConnector;
231231
use CodebarAg\DocuWare\DTO\Config\ConfigWithCredentials;
232232

233-
class CustomDocuWareConnector extends DocuWareConnector
233+
class YourOwnDocuWareConnector extends DocuWareConnector
234234
{
235235
public function __construct() {
236236
$configuration = new ConfigWithCredentials(
@@ -249,7 +249,7 @@ class CustomDocuWareConnector extends DocuWareConnector
249249
use App\Connectors\CustomDocuWareConnector;
250250
use CodebarAg\DocuWare\DTO\Config\ConfigWithCredentials;
251251

252-
$connector = new CustomDocuWareConnector();
252+
$connector = new YourOwnDocuWareConnector();
253253
```
254254

255255

0 commit comments

Comments
 (0)