summaryrefslogtreecommitdiff
path: root/tests/simple_unit/ActiveRecord/records/Blogs.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/simple_unit/ActiveRecord/records/Blogs.php')
-rw-r--r--tests/simple_unit/ActiveRecord/records/Blogs.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/simple_unit/ActiveRecord/records/Blogs.php b/tests/simple_unit/ActiveRecord/records/Blogs.php
new file mode 100644
index 00000000..69bdecd9
--- /dev/null
+++ b/tests/simple_unit/ActiveRecord/records/Blogs.php
@@ -0,0 +1,15 @@
+<?php
+
+class Blogs extends TActiveRecord
+{
+ public $blog_id;
+ public $blog_name;
+ public $blog_author;
+
+ public static function finder()
+ {
+ return self::getRecordFinder('Blogs');
+ }
+}
+
+?> \ No newline at end of file