File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ $connector = new DocuWareConnector(
214
214
);
215
215
```
216
216
217
- ### Extending the connector
217
+ ### Extending the connector (EXAMPLE)
218
218
219
219
We understand it may be repetitive to pass the configuration every time you create a new connector.
220
220
@@ -230,7 +230,7 @@ namespace App\Connectors;
230
230
use CodebarAg\DocuWare\Connectors\DocuWareConnector;
231
231
use CodebarAg\DocuWare\DTO\Config\ConfigWithCredentials;
232
232
233
- class CustomDocuWareConnector extends DocuWareConnector
233
+ class YourOwnDocuWareConnector extends DocuWareConnector
234
234
{
235
235
public function __construct() {
236
236
$configuration = new ConfigWithCredentials(
@@ -249,7 +249,7 @@ class CustomDocuWareConnector extends DocuWareConnector
249
249
use App\Connectors\CustomDocuWareConnector;
250
250
use CodebarAg\DocuWare\DTO\Config\ConfigWithCredentials;
251
251
252
- $connector = new CustomDocuWareConnector ();
252
+ $connector = new YourOwnDocuWareConnector ();
253
253
```
254
254
255
255
You can’t perform that action at this time.
0 commit comments