a tiny mvc framework for php using php-activerecord
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 8 lines 155 B view raw
1<?php 2namespace NamespaceTest; 3 4class Book extends \ActiveRecord\Model 5{ 6 static $belongs_to = array(array('parent_book', 'class_name' => __CLASS__)); 7} 8?>