for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yokai\MessengerBundle\Channel\Twilio\Factory;
use Twilio\Rest\Client as TwilioClient;
/**
* @author Matthieu Crinquand <[email protected]>
*/
class ClientFactory implements ClientFactoryInterface
{
* @inheritdoc
public function createClient($twilioId, $twilioToken)
return new TwilioClient($twilioId, $twilioToken);
}