Remove use of global variables + remove ember-cli-content-security-policy from package.json to avoid bogus csp violation warnings
<?php
namespace CorpusParole\Models;
use Illuminate\Database\Eloquent\Model;
class CocoonRevision extends Model
{
public function document() {
return $this->belongsTo('CorpusParole\Models\CocoonDocument');
}
}