Skip to content

Commit 7d6ee68

Browse files
committed
fix package name of abstract remote function call class
1 parent de00d03 commit 7d6ee68

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

motivation.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,11 @@ $result = $function->invoke(['paramName' => 'value']);
4949
```php
5050
<?php
5151

52-
use phpsap\classes\AbstractRemoteFunctionCall;
53-
use phpsap\interfaces\IConfig;
54-
use phpsap\saprfc\SapRfcConnection;
52+
use phpsap\saprfc\AbstractRemoteFunctionCall;
5553
use kbATeam\TypeCast\TypeCastValue;
5654

5755
class MyCoolSapRemoteFunction extends AbstractRemoteFunctionCall
5856
{
59-
/**
60-
* Create a connection instance using the given config.
61-
* @param \phpsap\interfaces\IConfig $config
62-
* @return \phpsap\saprfc\SapRfcConnection
63-
*/
64-
protected function createConnectionInstance(IConfig $config)
65-
{
66-
return new SapRfcConnection($config);
67-
}
68-
6957
/**
7058
* Define the name of the remote function.
7159
* @return string

0 commit comments

Comments
 (0)