for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Integrations\Connectors\Coursera;
use Illuminate\Database\Eloquent\Model;
use Log;
use Cloudflare\API\Auth\APIKey;
use App\Models\User;
use Integrations\Connectors\Connector;
class Coursera extends Connector
{
public static $ID = 32;
protected function getConnection($token = false)
return new Cloudflare\API\Adapter\Guzzle(new APIKey('[email protected]', 'apiKey'));
}