<?php

class InfoSource extends \Eloquent {
	
  protected $softDelete	 = true;
	protected $guarded     = array();
	protected $table       = 'info_source';

	public function project() {
		return $this->belongsTo('Project');
	}
}
