mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 05:27:59 +01:00
7 lines
No EOL
139 B
PHP
7 lines
No EOL
139 B
PHP
<?php namespace Entities;
|
|
|
|
class TrackFile extends \Eloquent {
|
|
public function track() {
|
|
return $this->belongsTo('Entities\Track');
|
|
}
|
|
} |