UserProject.php 514 Bytes
<?php
/**
 * Created by PhpStorm.
 * User: Alex Savenko
 * Date: 05.04.2017
 * Time: 18:08
 */

namespace App\Model;


use Phalcon\Mvc\Model;

class UserProject extends Model
{
    public function getSource()
    {
        return 'user_project';
    }

    public function initialize()
    {
        $this->belongsTo('project_id', Project::class, 'id',
            array('alias' => 'project')
        );
        $this->belongsTo('user_id', User::class, 'id',
            array('alias' => 'user')
        );
    }
}