brandManagers.php
307 Bytes
<?php
class brandManagers extends \Phalcon\Mvc\Model
{
public $email;
public $brand_id;
public $project_id;
public function getSource()
{
return "brand_managers";
}
public function initialize()
{
$this->hasOne("brand_id", "parserSections", "id");
}
}