Skip to content

Instantly share code, notes, and snippets.

@phalcon
Created May 27, 2013 15:13
Show Gist options
  • Select an option

  • Save phalcon/5657574 to your computer and use it in GitHub Desktop.

Select an option

Save phalcon/5657574 to your computer and use it in GitHub Desktop.
<?php
class Robots extends Phalcon\Mvc\Model
{
public function initialize()
{
$this->hasManyThrough(
'id',
'RobotsParts',
'robots_id',
'parts_id',
'Parts',
'id'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment