Skip to content

Commit 4857679

Browse files
committed
Note the manager's extend method in the facade doc block
1 parent fe782a2 commit 4857679

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Facades/TwilioClient.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,20 @@
33
namespace BabDev\Twilio\Facades;
44

55
use BabDev\Twilio\Contracts\TwilioClient as TwilioClientContract;
6+
use BabDev\Twilio\ConnectionManager;
67
use Illuminate\Support\Facades\Facade;
78
use Twilio\Rest\Api\V2010\Account\CallInstance;
89
use Twilio\Rest\Api\V2010\Account\MessageInstance;
910
use Twilio\Rest\Client;
1011

1112
/**
13+
* @method static ConnectionManager extend($name, \Closure $callback)
1214
* @method static TwilioClientContract connection(string $name = null)
1315
* @method static Client twilio()
1416
* @method static CallInstance call(string $to, array $params = [])
1517
* @method static MessageInstance message(string $to, string $message, array $params = [])
1618
*
17-
* @see \BabDev\Twilio\ConnectionManager
19+
* @see ConnectionManager
1820
*/
1921
final class TwilioClient extends Facade
2022
{

0 commit comments

Comments
 (0)